.time-reporting-header {
    margin-bottom: 0rem;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    padding: 1rem;
}

.time-reporting-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000 !important;
}

.month-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Fix navigation arrow colors */
.month-navigation .btn-link {
    color: #000000 !important;
    text-decoration: none;
}

.month-navigation .btn-link:hover,
.month-navigation .btn-link:focus {
    color: #333333 !important;
    text-decoration: none;
}

.month-navigation .btn-link i {
    color: #000000 !important;
    font-size: 1.2rem;
}

.month-navigation .btn-link:hover i,
.month-navigation .btn-link:focus i {
    color: #333333 !important;
}

.month-navigation span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Fix spinner color */
.text-primary {
    color: #000000 !important;
}

.spinner-border-sm {
    border-color: #000000 !important;
    border-right-color: transparent !important;
}

.search-box {
    margin-bottom: 1rem;
}

.search-box input {
    max-width: 300px;
}

.time-reporting-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}

.table-wrapper {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.table {
    margin-bottom: 0;
}

.table thead {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-sm {
    font-size: 0.875rem;
}

.table-sm td, 
.table-sm th {
    padding: 0.5rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.05) !important;
}

/* Sortable column styles */
.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.sortable:hover {
    background-color: rgba(0,0,0,0.05) !important;
}

.sort-icon {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    color: #666 !important;
    opacity: 0.7;
}

.sortable:hover .sort-icon {
    opacity: 1;
    color: #000 !important;
}

.sort-icon.fa-sort-up,
.sort-icon.fa-sort-down {
    color: #000 !important;
    opacity: 1;
}