﻿
/* Popup Header */
.popup-header-22_dec_24 {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center align title and close button */
    padding: 0% 5%; /* Reduced padding */
    font-size: 14px; /* Slightly smaller font */
    font-weight: bold;
    color: white;
}
    .popup-header-22_dec_24 h3
    {
        font-size:1.17em !important;
    }
    .success-popup-22_dec_24 .popup-header-22_dec_24 {
        background-color: #4caf50; /* Green for Success */
    }

.error-popup-22_dec_24 .popup-header-22_dec_24 {
    background-color: #f44336; /* Red for Error */
}

/* Close Button */
.close-button-22_dec_24 {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

    .close-button-22_dec_24:hover {
        color: #ddd;
    }


/* Popup Content with Icon */
.popup-message-22_dec_24 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px; /* Spacing between icon and text */
    padding: 20px 15px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

.popup-icon-22_dec_24 {
    font-size: 24px; /* Larger icon */
    flex-shrink: 0;
}
.popup-message-22_dec_24
{
    font-family:auto !important;
}

.popup-content-22_dec_24 p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Close Button */
.close-button-22_dec_24 {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 15px;
}

    .close-button-22_dec_24:hover {
        color: #ddd;
    }

@media (min-width: 281px) and (max-width: 767px) {
    .popup-container-22_dec_24 {
        top: -27% !important;
    }
}
/* Rest of Popup Styles */
.popup-container-22_dec_24 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-box-22_dec_24 {
    background-color: white;
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: popup-zoom-22_dec_24 0.3s ease-out;
}

@keyframes popup-zoom-22_dec_24 {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.popup-footer-22_dec_24 {
    padding: 10px;
    background-color: #f1f1f1;
    text-align: right;
}

    .popup-footer-22_dec_24 button {
        background-color: #555;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 5px;
        font-size: 14px;
        cursor: pointer;
    }

        .popup-footer-22_dec_24 button:hover {
            background-color: #333;
        }
