.table-bordered {
    border: 2px solid #dee2e6;
}

.table-bordered tbody tr {
    border-bottom: 2px solid #dee2e6 !important;
}

.table-bordered tbody tr:last-child {
    border-bottom: 2px solid #dee2e6 !important;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6 !important;
    border-right: 2px solid #dee2e6 !important;
}

.table-bordered td:last-child,
.table-bordered th:last-child {
    border-right: 1px solid #dee2e6 !important;
}

/* Enhanced Table Header */
.table thead th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 15px 12px !important;
    border-bottom: 3px solid #1a252f !important;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.table thead th:first-child {
    border-top-left-radius: 8px;
}

.table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Enhanced Row Hover Effect */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.08) !important;
    border-left: 4px solid #007bff;
    transform: translateX(2px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Better Cell Padding */
.table tbody td {
    padding: 12px !important;
    vertical-align: middle;
}

/* Enhanced Card */
.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #5a67d8;
}

.card-header h6 {
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
