@charset "UTF-8";
/* CSS Document */
/* table-styles.css */
/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f97316;
    color: white;
}

th {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0.75rem 0.5rem;
}

td {
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    vertical-align: middle;
}

/* Fixed column styles */
.fixed-column {
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 1;
}

td.fixed-column label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
}

/* Product row styles */
.product-row {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.product-row:hover {
    background-color: #f9fafb;
}

/* Details section styles */
.details-section {
    display: none;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.375rem;
    margin: 0.5rem 0;
}

.details-section p {
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.5;
}

