/*
==========================================
Track Cycling Calcs
Gear reference table
==========================================
*/

.gear-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4px;
    color: #222;
}

.gear-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
    width: 100%;
}

.gear-table {
    border-collapse: collapse;
    width: 100%;
    white-space: nowrap;
    font-size: 12px;
}

.gear-table th,
.gear-table td {
    border: 1px solid #c0c0c0;
    padding: 6px 6px;
    text-align: center;
}

.gear-table th {
    background: #333;
    color: white;
    position: sticky;
    top: 0;
}

.gear-table .gear-row-header {
    background: #333;
    color: white;
    font-weight: bold;
}

.gear-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.gear-table tbody tr:hover {
    background: #e8f3ff;
}