﻿/* Popup Styling */

.notify-area {
    position: fixed; /* Ensures it covers the whole viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    background: rgba(0, 32, 49, 0.79); /* Semi-transparent background */
    z-index: 9998; /* Ensures it appears above other elements */
    display: flex; /* Center content */
    align-items: center;
    justify-content: center;
}
.custom-popup {
    position: absolute;
    top: 1%;
    right: 10%;
    width: 80%;
    background: #002031;
    border-radius: 1px;
    box-shadow: none;
    overflow: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3sease, transform 0.3sease;
    z-index: 9999;
    border: 1px solid #003a57;
}
div#pwaNotifyPermission {
    color: #cbcbcb !important;
}
@media (min-width: 960px) {
    .custom-popup {
        width: 30%;
        right: 35%;
    }
}

.custom-popup-top-title {
    color: #dcdcdc;
}
/* Top Section */
.custom-popup-top {
    background: #003a57;
    color: #dcdcdc;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

/* Content Styling */
.custom-popup-content {
    padding: 15px;
    text-align: center;
}

    .custom-popup-content p {
        margin-bottom: 10px;
    }

.custom-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Button */
#custom-accept-btn {
    background: #ffac25;
    color: #003a57;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    #custom-accept-btn:hover {
        background: #003a57;
        color:white;
    }

div#custom-notify_permission {
    padding: 5%;
}
