﻿.summary-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.summary-label {
    display: block;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.currency-values {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.summary-value {
    background-color: white;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    font-size: 13px;
}

/* Responsive behavior */
@media (max-width: 480px) {
    .currency-values {
        gap: 8px;
    }

    .summary-value {
        flex: 1;
        min-width: 90px;
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 320px) {
    .currency-values {
        flex-direction: column;
        gap: 6px;
    }

    .summary-value {
        width: 100%;
        min-width: auto;
    }
}
