/*
Theme Name: Days From Today Premium Light Uniform
Theme URI: https://daysfromtoday.ai
Description: A premium, completely consistent Light Theme calculator with unified Orange accents.
Version: 1.3.0
Author: Developer
*/

/* Core Global Elements Reset */
html, body {
    scroll-behavior: smooth;
    background-color: #f8fafc !important; /* Muted soft slate white */
    color: #1e293b !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Unified Layout Styling Framework (Calculator Style Matching) */
.calculator-card-style {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important; /* Soft card border border lines */
    box-shadow: 0 10px 25px -5px rgba(241, 245, 249, 0.9), 0 8px 10px -6px rgba(241, 245, 249, 0.9) !important;
}

/* Custom Uniform Orange Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 99px;
}

/* Custom Text inputs adjustment */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}

.animate-fade-in {
    animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}