.ccl-table-container {
    margin: 40px 0;
    overflow-x: auto;
}

.ccl-styled-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e1e8ed;
}

.ccl-styled-table thead th {
    background-color: var(--color-primary);
    color: #fff;
    text-align: left;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.ccl-styled-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e1e8ed;
    color: var(--color-gray-dark);
    font-size: 15px;
}

.ccl-styled-table tbody tr:nth-child(even) {
    background-color: #f9fbff;
}

.ccl-styled-table tbody tr:hover {
    background-color: #f2f4f6;
}

.ccl-styled-table td:first-child {
    font-weight: 700;
    color: var(--color-accent);
    width: 60px;
}

@media (max-width: 600px) {
    .ccl-styled-table thead {
        display: none;
    }
    .ccl-styled-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e1e8ed;
    }
    .ccl-styled-table td {
        display: flex;
        justify-content: space-between;
        text-align: right;
        padding: 10px;
    }
    .ccl-styled-table td::before {
        content: attr(data-label);
        font-weight: 700;
        text-align: left;
    }
}
