/* Growing bar animation for Business Demo */
.savings-bar-container {
    width: 80%;
    max-width: 300px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin: 15px auto 5px;
    overflow: hidden;
}

.savings-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF3800, #FF6B35);
    border-radius: 6px;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 8px rgba(255, 56, 0, 0.5);
}

/* Center alert dismiss button vertically */
.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    padding: 0.5rem;
}

/* Mobile warning overlay - visibility controlled by JavaScript */
.mobile-warning-overlay {
    display: none; /* Default hidden, shown by clientside callback */
}
