/* General styling for popup */

.emphasis-text {
    color: #b7905a !important;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Background overlay */
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    max-width: 30%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tick-icon img {
    height: 148px;
}

.popup-content h2, .popup-content p {
    text-align: center !important;
}

.popup-content h2 {
    color: #015989;
    text-decoration: none;
}

.popup-content p {
    color: #333;
    margin: 10px 0;
}

#close-popup-btn {
    background-color: #D1AA72;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 50px;
}

#close-popup-btn:hover {
    background-color: #c09865;
}

@media (max-width: 600px) {
    .popup-content {
        padding: 15px;
        max-width: 60%;
    }

    .tick-icon img{
        height: 100px;
    }

    .popup-content h2 {
        font-size: 18px;
        margin-top: 0;
    }

    #close-popup-btn {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 10px;
    }
}
