body {
    font-family: 'Inter', sans-serif;
    /* Updated Simple Soothing Animation */
    background-color: #0c1427; /* Deep night blue */
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1.2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.7px),
        radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 10px 20px, 60px 80px, 20px 180px;
    animation: drift 400s linear infinite;
}

@keyframes drift {
    from { background-position: 10px 20px, 60px 80px, 20px 180px; }
    to   { background-position: -1500px 5020px, -1400px 5080px, -1600px 5180px; }
}

/* Class to pause the animation */
body.animation-paused {
    animation-play-state: paused;
}

input[type="time"], input[type="number"], input[type="date"] {
    transition: box-shadow 0.2s ease-in-out;
}
input[type="time"]:focus, input[type="number"]:focus, input[type="date"]:focus { box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.5); outline: none; } /* Cyan focus glow */
input[type="time"]::-webkit-calendar-picker-indicator, input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.8); }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease-out forwards; }
.page { display: none; } /* Hide all pages by default */
.page.active { display: block; } /* Show active page */
.ad-placeholder {
    background-color: #374151; /* bg-gray-700 */
    border: 2px dashed #4b5563; /* border-gray-600 */
    color: #9ca3af; /* text-gray-400 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
/* Style for active navigation link */
.nav-link.active {
    color: #22d3ee; /* text-cyan-400 */
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #1f2937; /* bg-gray-800 */
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.accordion-header svg.chevron {
    transition: transform 0.3s ease-out;
}
.accordion-header[aria-expanded="true"] svg.chevron {
    transform: rotate(180deg);
}

/* Additional UI Animations */
.animated-button {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.animated-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}
