.chart-container {
    position: relative;
    height: 400px;
    margin-bottom: 30px;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.settings-panel {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.export-btn-group {
    margin-left: 10px;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.03);
}

.form-switch .form-check-input {
    width: 2.5em;
    margin-left: 0;
}

.form-check-inline {
    margin-right: 0.5rem;
}

#currentPrice, #uniqueDealsStats {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
}

#currentBid, .numberUnique {
    font-size: 1.1rem;
}

#currentOffer {
    font-size: 1.1rem;
}

.price-up {
    animation: priceUp 1s ease-out;
}

.price-down {
    animation: priceDown 1s ease-out;
}

@keyframes priceUp {
    0% { background-color: rgba(40, 167, 69, 0.3); }
    100% { background-color: transparent; }
}

@keyframes priceDown {
    0% { background-color: rgba(220, 53, 69, 0.3); }
    100% { background-color: transparent; }
}

/* Добавляем стили для дневного индекса */
#currentDayIndex {
    font-size: 1.05rem;
}

/* Обновляем анимации */
.price-up, .price-down {
    transition: background-color 0.5s ease;
}

.price-up {
    background-color: rgba(40, 167, 69, 0.2);
}

.price-down {
    background-color: rgba(220, 53, 69, 0.2);
}

/* Добавляем отступы между элементами */
#currentPrice > div, #uniqueDealsStats > div {
    margin-bottom: 5px;
    padding: 3px 0;
    border-bottom: 1px solid #eee;
}

#currentPrice > div:last-child, #uniqueDealsStats > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#uniqueDealsStats {
    padding: 12px;
}

#uniqueDealsStats h6 {
    font-size: 0.85rem;
    color: #495057;
    font-weight: 600;
}