#overview-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 1rem;
}

#overview-breadcrumb svg { 
    fill: currentColor; 
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    width: 0.875rem;
    height: 0.875rem;
}

#overview-title {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#overview-table {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    border-width: 0;
    border-radius: 0.5rem;
    background-color: #fff;
    overflow: hidden;
    transition: var(--transition);
}

#overview-table:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#overview-table, #overview-table th {
    border: none;
}

#overview-table > thead > tr > th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--light);
    border-bottom: 2px solid var(--gray-light);
}

#overview-table > tbody > tr > td {
    color: var(--dark);
    font-size: 0.875rem;
    vertical-align: middle;
}

#overview-table > tbody > tr > td:first-child {
    font-weight: 600;
}

#overview-table > tbody > tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

#overview-table > tbody > tr:last-child {
    border-bottom: none;
}

#overview-table > tbody > tr:hover {
    background-color: var(--secondary);
}

#overview-table td {
    padding: 1rem 1.25rem;
}

#overview-table th {
    padding: 0.75rem 1.25rem;
}

/* Status badges in tables */
#overview-table .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Action buttons in tables */
#overview-table .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Table row actions */
#overview-table .row-actions {
    opacity: 0.5;
    transition: var(--transition);
}

#overview-table tr:hover .row-actions {
    opacity: 1;
}

/* Empty state */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--gray);
}

.empty-state svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    max-width: 24rem;
    margin-bottom: 1.5rem;
}
