/* Price calculation display box */
.price-calculation-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease;
}

.price-calculation-box .price-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Distance text styling */
.distance-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

/* Price amount display */
.price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

/* Calendar picker styling */
.flatpickr-calendar.dark {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 140, 66, 0.3) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6) !important;
}

.flatpickr-day.selected {
    background: #ff8c42 !important;
    border-color: #ff8c42 !important;
}
