/* file: public_html/files/css/main.css */
body {
    background-color: #F4F1E1;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

/* Unified Clean Card Style */
.clean-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.clean-card:hover {
    border-color: #DAEB28;
    box-shadow: 0 10px 15px -3px rgba(218, 235, 40, 0.2), 0 4px 6px -2px rgba(218, 235, 40, 0.1);
    transform: translateY(-2px);
}

/* Clean Input Style */
.clean-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    color: #111827;
    transition: all 0.2s;
}

.clean-input:focus {
    border-color: #DAEB28;
    box-shadow: 0 0 0 4px rgba(218, 235, 40, 0.3);
    outline: none;
}

/* Theme Button */
.theme-btn {
    background-color: #DAEB28;
    color: #111827;
    font-weight: 800;
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #cddb1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 235, 40, 0.3);
}

/* Hide scrollbar for clean lists */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Smooth Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade { animation: fadeIn 0.3s ease-out forwards; }

/* Ticker Marquee Animation */
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}
.ticker-container:hover .animate-scroll {
    animation-play-state: paused;
}
