/* ========================================
   BASE TABLE STYLES
   Shared styles for all tables across the application
   ======================================== */

/* Base Table Structure */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Cell Styles */
th, td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e3f2fd;
}

/* Table Header Styles - Clean, Modern Look */
th {
    background-color: #1976d2;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Row Styling - Alternating Colors */
tr:nth-child(odd) {
    background-color: #e3f2fd;
}

tr:nth-child(even) {
    background-color: #ffffff;
}

/* Row Hover Effect */
tr:hover {
    background-color: #bbdefb !important;
    transition: background-color 0.2s ease;
}

/* Responsive Table Container */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Clickable Row Styles */
.clickable-row {
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease; 
    border-radius: 6px; 
}

.clickable-row:hover {
    background-color: #bbdefb;
    cursor: pointer;  
}

