/* ===============================
   NOTIFICATION ADMIN PAGE
   Fully scoped
================================ */

.notification-admin {
    min-height: 80vh;
}

/* Title */

.notification-admin-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-admin-subtitle {
    color: #6b7280;
    font-size: 13px;
}

/* Card */

.notification-admin-card {
    border-radius: 14px;
    border: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Inputs */

.notification-admin-input {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.notification-admin-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.15rem rgba(59,130,246,0.25);
}

/* Labels */

.notification-admin-label {
    font-weight: 500;
}

/* Button */

.notification-admin-btn {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .25s ease;
}

.notification-admin-btn:hover {
    background: linear-gradient(135deg,#1d4ed8,#2563eb);
    transform: translateY(-1px);
}

/* Success Alert */

.notification-admin-alert {
    margin: 16px;
    border-radius: 10px;
    text-align: center;
}

/* Mobile */

@media (max-width:768px) {

    .notification-admin-card {
        margin-top: 10px;
    }

}