.popup-card {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    max-width: 650px;
    width: 90%;
    z-index: 9999;
    animation: slideDown 0.5s ease;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    background-blend-mode: lighten;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Prevent scroll */
}

.popup-card-body {
    padding: 20px;
    position: relative;
    text-align: center;
}

.popup-main-header {
    height: 60px;
    width: 100%;
    background-color: #0a043c;
    border-radius: 10px;
    margin-top: -10px;
    padding-top: 10px;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 5px;
    margin-bottom: 10px;
}

.popup-bell {
    font-size: 28px;
    color: white;
    text-shadow: 0 0 10px #ec4b4b, 0 0 20px #ec4b4b, 0 0 40px #ec4b4b, 0 0 80px #ec4b4b;
    margin-right: 8px;
}

.popup-main-title {
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px #ec4b4b;
}

.popup-close-btn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

.fixed-apply-button {
    text-align: center;
    margin: 15px 0 25px;
}

.custom-btn-apply {
    text-decoration: none;
    position: relative;
    display: inline-block;
    background: #f49d1a;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 25px;
    overflow: hidden;
}

.custom-btn-apply .custom-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
}

.custom-btn-apply .custom-inner {
    position: relative;
    z-index: 1;
}

.notifications-container {
    width: 100%;
}

.notification-block {
    margin-bottom: 15px;
}

.popup-title {
    margin: 10px 0 8px;
    font-weight: 600;
    font-size: 20px;
    color: #f49d1a;
}

.popup-message {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.popup-table {
    text-align: left;
    font-size: 14px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    border-collapse: collapse;
}

.popup-table th,
.popup-table td {
    padding: 3px 8px;
}

.popup-table th {
    font-weight: 600;
    color: #f49d1a;
    white-space: nowrap;
}

.popup-table td {
    color: #333;
}

.popup-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.popup-left {
    flex: 1;
    min-width: 180px;
    margin-top: 10px;
}

.popup-right {
    flex: 2;
    text-align: left;
}

hr {
    border: 1px solid #000;
    margin-right: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        top: 0;
    }
    to {
        opacity: 1;
        top: 100px;
    }
}
