﻿.tariff-table {
    width: 100%;
    max-width: 1300px;
    margin: 40px auto;
    font-family: sans-serif;
    font-size: 15px;
    border-collapse: collapse;
}

.tariff-header {
    display: flex;
    background-color: #98cbed;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px 5px 0 0;
}

.tariff-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    padding: 5px;
    align-items: center;
    background-color: #f9f9f9;
}

    .tariff-row:nth-child(even) {
        background-color: #f9f9f9;
    }

.col {
    flex: 1;
    padding: 8px;
    color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .col.category {
        flex: 2;
        justify-content: space-between; /* teksti majtas, foto djathtas */
        align-items: center;
    }

.category-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .category-info .code {
        font-weight: bold;
        font-size: 16px;
        color: #1a202c;
    }

    .category-info .name {
        font-size: 13px;
        color: #718096;
    }

.col.category img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .tariff-header,
    .tariff-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .col {
        width: 100% !important;
        justify-content: flex-start;
    }

        .col.category {
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
        }
}
