.cursor-pointer {
    cursor: pointer;
}

.expandable-parent:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.expand-icon i {
    transition: transform 0.3s ease;
}

.expandable-row.expanded .expand-icon i {
    transform: rotate(90deg);
}

.child-row {
    background-color: #f8f9fa;
}

.child-row.show {
    display: table-row !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expandable-row:hover {
    color: #0d6efd;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}

.table th, .table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #212529;
}

.table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.text-end {
    text-align: right;
}

.text-nowrap {
    white-space: nowrap;
}

.container {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.table-responsive {
    overflow-x: auto;
}

.h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;

}