body {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    min-height: 100vh;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 768px) {
    body {
        overflow: auto;
        height: auto;
        min-height: 100vh;
    }
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

button, a {
    transition: all 0.3s ease;
}

button:hover, a:hover {
    transform: translateY(-2px);
}

input:focus {
    outline: none;
    ring: 2px solid #22d3ee;
}
/* styles.css */
.modal {
    z-index: 1000;
}

.modal.hidden {
    display: none;
}
.scheduler-job {
    background: #374151;
    border: 1px solid #4B5563;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
}