/* Wedding Budget Calculator - Premium Theme */

.budget-input-group {
    position: relative;
}

.budget-input-group .currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #7a1a3b;
    font-size: 1.1em;
}

.budget-input-group input {
    padding-left: 36px;
}

/* Budget tier badge */
.tier-badge {
    animation: tierReveal 0.5s ease-out;
}

@keyframes tierReveal {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Bar chart animation */
.budget-bar {
    animation: barGrow 0.8s ease-out forwards;
    transform-origin: left;
}

@keyframes barGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
