/* Notify Popup Styles */
.notify-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.notify-popup-content {
    background-color: #000;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #bcff00;
    width: 80%;
    max-width: 600px;
    position: relative;
    color: #fff;
}

.notify-close {
    color: #bcff00;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.notify-close:hover,
.notify-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.notify-popup h2 {
    margin-top: 0;
    color: #bcff00;
}

.notify-popup form {
    margin-top: 20px;
}

.notify-popup .form-group {
    margin-bottom: 15px;
}

.notify-popup label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.notify-popup input[type="text"],
.notify-popup input[type="email"],
.notify-popup textarea,
.notify-popup select {
    width: 100%;
    padding: 8px;
    border: 1px solid #373739;
    background-color: #000;
    color: #fff;
}

.notify-popup .checkbox-group {
    margin-top: 15px;
}

.notify-popup .checkbox-item {
    margin-bottom: 10px;
}

.notify-popup button[type="submit"] {
    background-color: #bcff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.notify-popup button[type="submit"]:hover {
    background-color: #a6e600;
}

.notify-popup .alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.notify-popup .alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border: 1px solid #dc3545;
}

.notify-popup .alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #2ecc71;
    border: 1px solid #28a745;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .notify-popup-content {
        width: 95%;
        margin: 5% auto;
        padding: 15px;
    }
}