/**
 * Expandable rows styling
 */

/* Header row styling */
.row-header {
    cursor: pointer;
}

.row-header.active-row {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Detail row styling */
.row-detail {
    background-color: rgba(0, 0, 0, 0.02);
}

.row-detail .expanded-content {
    padding: 1rem;
}

/* Expand control styling */
.expand-control {
    display: flex;
    align-items: center;
}

.expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    color: inherit;
    transition: transform 0.2s;
}

.expand-toggle:hover {
    color: var(--bs-primary, #0d6efd);
}

.active-row .expand-toggle i.fa-chevron-up {
    color: var(--bs-primary, #0d6efd);
}
