/* =========================== */
/* GRAY AREA TABLE */
/* =========================== */
/* States WITH Domestic Worker Bills of Rights */
.state-protected {
    fill: var(--color-mint);
    transition: fill 0.3s ease;
}

/* States WITHOUT (only federal protections) */
.state-federal-only {
    fill: var(--color-pink);
    transition: fill 0.3s ease;
}

/* hover effects */
.state-protected:hover,
.state-federal-only:hover {
    opacity: 0.8;
    stroke: #333;
    stroke-width: 1.5px;
}

.svg-container svg {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .svg-container svg {
        max-width: 90%;
    }
}

.gray-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 1rem 0;
}

.gray-table > tbody > tr > td:first-child,
.gray-table > thead > tr > th:first-child {
    text-align: center !important;
    vertical-align: middle !important;
    display: table-cell !important;
}

table.gray-table {
    width: 100% !important;
    min-width: 100% !important;
    table-layout: auto;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* soft shadow */
    overflow: hidden !important;
    max-width: 1000px;
    margin: 0 auto;
}

.gray-table th {
    background-color: #E5E0F6; /* lavender mist */
    color: var(--color-grey) !important;
    padding: 1rem;
    font-weight: 600;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    text-align: center;
}

.gray-table td {
    padding: 1rem;
    vertical-align: top;
    border: 1px solid #E5E0F6 !important; /* lavender mist */
    border-radius: 10px !important;
    color: var(--color-muted-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .gray-table td,
    .gray-table th {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* =========================== */
/* DISCLOSURE GUIDE */
/* =========================== */
.tool-card-wide {
    background-color: var(--base-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .tool-card-wide {
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-img-wrapper img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-img-wrapper {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .section-img-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}