/* Custom styles for ScheduleIsUp */

.feather-lg {
    width: 2rem;
    height: 2rem;
}

.toast {
    --bs-toast-bg: var(--bs-dark);
    --bs-toast-border-color: var(--bs-border-color);
}

.toast.bg-success {
    --bs-toast-bg: var(--bs-success);
    --bs-toast-color: var(--bs-white);
}

.toast.bg-danger {
    --bs-toast-bg: var(--bs-danger);
    --bs-toast-color: var(--bs-white);
}

.toast.bg-info {
    --bs-toast-bg: var(--bs-info);
    --bs-toast-color: var(--bs-white);
}

/* Status animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-active {
    animation: pulse 2s infinite;
}

/* Custom card hover effects */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
}

/* History container styling */
#history-container {
    max-height: 400px;
    overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}
