/* 表格相關樣式 */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-dark);
}

.table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.table th:first-child {
    border-top-left-radius: var(--border-radius);
}

.table th:last-child {
    border-top-right-radius: var(--border-radius);
}

.table tr:last-child td {
    border-bottom: none;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: var(--bg-light);
}

.table-hover tbody tr:hover {
    background-color: rgba(21, 101, 192, 0.05);
}

.table-bordered {
    border: 1px solid var(--bg-dark);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid var(--bg-dark);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .table th,
    .table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .table {
        min-width: 650px;
    }
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
} 