/* * Silvatree Capacity Exchange - Core Styles
 * Folder: public/
 * Filename: style.css
 */

:root {
    --silva-forest: #004733;
    --silva-gold: #C5A059;
    --silva-cream: #F9FAF7;
    --silva-charcoal: #1A1C1B;
    --silva-slate: #64748b;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--silva-cream);
    color: var(--silva-charcoal);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1, h2, h3 {
    color: var(--silva-forest);
}
#wizard-container{
    padding-top: 72px;
    zoom: 110%;
}

/* Card Transitions */
.wizard-step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wizard-step.hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Range Input Customization */
input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    background-image: linear-gradient(var(--silva-forest), var(--silva-forest));
    background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--silva-forest);
    cursor: pointer;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.5);
    transition: background .3s ease-in-out;
}

/* Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Checkbox/Option Button Styling for Expenses */
.expense-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--silva-cream);
    border-radius: 0.75rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.expense-item.active {
    border-color: var(--silva-forest);
    background: #eff6ff;
}

/* Progress Bar Smoothing */
#progress-bar {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}