/* Custom styles for Web Push Service */

/* Body background */
body {
    background-color: #f8f9fa;
}

/* Main content area */
main {
    min-height: calc(100vh - 200px);
    padding: 20px 0;
}

/* Card improvements */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Table improvements */
.table th {
    background-color: #f8f9fa;
    border-top: none;
}

/* Button improvements */
.btn {
    border-radius: 0.375rem;
}

/* Form improvements */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Alert improvements */
.alert {
    border-radius: 0.375rem;
}

/* Navbar improvements */
.navbar-brand {
    font-weight: 600;
}

.nav-link.active {
    font-weight: 500;
}

/* Dashboard stats cards */
.stats-card {
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
}

/* Notification badges */
.badge {
    font-size: 0.75em;
}

/* Avatar styles */
.avatar-sm {
    width: 2rem;
    height: 2rem;
}

/* Quick action cards */
.card.text-decoration-none:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card.text-decoration-none {
    transition: all 0.3s ease;
}

/* Custom colors */
.text-primary {
    color: #0d6efd !important;
}

.bg-primary {
    background-color: #0d6efd !important;
}

/* Border left colors for stats cards */
.border-left-primary {
    border-left: 0.25rem solid #0d6efd !important;
}

.border-left-success {
    border-left: 0.25rem solid #198754 !important;
}

.border-left-info {
    border-left: 0.25rem solid #0dcaf0 !important;
}

.border-left-warning {
    border-left: 0.25rem solid #ffc107 !important;
}

.border-left-danger {
    border-left: 0.25rem solid #dc3545 !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
} 