@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: transparent;
    padding: 10px;
}

.table-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.albo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.albo-table th {
    background-color: #40312A;
    color: #fff;
    padding: 15px 12px;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.albo-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    vertical-align: middle;
}

.albo-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.albo-table tbody tr:hover {
    background-color: #f0f5fa;
    transition: background-color 0.2s ease;
}

.albo-table td:first-child {
    font-weight: bold;
    border-left: 1px solid #eee;
}

@media screen and (max-width: 768px) {
    body {
        padding: 5px;
    }
    
    .table-container {
        box-shadow: none;
        background: transparent;
    }

    .albo-table {
        border: 0;
    }

    .albo-table thead {
        display: none;
    }

    .albo-table tr {
        display: block;
        margin-bottom: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border: 1px solid #eaeaea;
        overflow: hidden;
    }

    .albo-table td:first-child {
        background-color: #40312A;
        color: #fff;
        font-size: 16px;
        text-align: center;
        display: block;
        padding: 10px;
        border-bottom: none;
        border-left: none;
    }

    .albo-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        border-right: none;
        text-align: right;
    }

    .albo-table td:last-child {
        border-bottom: 0;
    }

    .albo-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 11px;
        color: #777;
        margin-right: 15px;
        text-align: left;
    }
}