/* Main styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

/* Notification preview */
.notification-preview {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.notification-title {
    font-size: 18px;
    color: #212529;
}

.notification-body {
    color: #6c757d;
    font-size: 14px;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
}

.table td {
    vertical-align: middle;
}

/* Status badges */
.status-success {
    color: #198754;
}

.status-error {
    color: #dc3545;
}

/* Form input focus */
.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Card hover effect */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Button hover effects */
.btn-primary {
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0a58ca;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
} 