
.table-container {
    background: rgba(20, 25, 45, 0.85);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

thead {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

th:last-child {
    border-right: none;
}

th i {
    margin-right: 8px;
    color: #4cc9f0;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(67, 97, 238, 0.1);
}

tbody tr.active {
    background: rgba(67, 97, 238, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

tbody tr:nth-child(even):hover {
    background: rgba(67, 97, 238, 0.15);
}

td {
    padding: 16px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

td:last-child {
    border-right: none;
}

.brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4cc9f0;
}

.range {
    color: #72efdd;
    font-weight: 500;
}

.note {
    color: #f0a6ca;
    font-size: 0.95rem;
}

.model {
    color: #a9def9;
}

.software {
    color: #80ffdb;
}

.legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.color-sample {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 8px;
}

.brand-color {
    background-color: #4cc9f0;
}

.model-color {
    background-color: #a9def9;
}

.software-color {
    background-color: #80ffdb;
}

.range-color {
    background-color: #72efdd;
}

.note-color {
    background-color: #f0a6ca;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    th, td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
    
    .table-container {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}