.currency-container {
    padding: 15px 0 0;
}

.currency-header {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #f4f4fe;
    margin-bottom: 5px;
}

.currency-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: #ff8800;
    font-weight: 600;
}

.live-time {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: #8a8a93;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #00cc66;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink-animation 1.5s infinite ease-in-out;
}

@keyframes blink-animation {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.table_content {
    color: #e0e0e6;
    padding: 15px;
    border-radius: 12px;
}

.table_table {
    background: #fff;
    padding: 5px;
}

.valuta_title, .table_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valuta_title {
    padding: 0 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
}

.table_row {
    font-size: 14px;
    color: #222;
    line-height: 31px;
    padding: 0 8px;
}

.table_row:nth-child(odd) {
    background: #e4e4e4;
}

.table_items {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.valuta_title .val_title, .table_row .valuta { width: 50%; }

.valuta_title .kod_title, .valuta_title .kurs_title, .valuta_title .dynam_title { 
    width: 20%; 
    text-align: center;
    
}

.kod, .kurs { 
    width: 20%; 
    text-align: center;
    text-transform: uppercase;
}

.valuta_title .dynam_title, .table_row .dynamic { 
    width: 2%; 
    justify-content: space-around; 
}

@media (max-width: 480px) {
    .valuta_title {
        padding: 0 5px;
        font-size: 14px;
    }
}