﻿
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    width: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.popup-buttons {
    margin-top: 15px;
}

    .popup-buttons .btn {
        margin: 0 10px;
        padding: 6px 20px;
        border: none;
        cursor: pointer;
    }

.btn-danger {
    background-color: #c35839;
    color: white;
    transition: background-color 0.3s ease;
}

    .btn-danger:hover {
        background-color: #223250;
    }

.btn-secondary {
    background-color: #7f8c8d;
    color: white;
}


