/* ================================
   Table Styling
================================ */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-family: system-ui, sans-serif;
}

.spec-table thead tr {
    background: #3b3c3e !important; /* Updated header */
    color: white;
    text-align: left;
}

.spec-table th,
.spec-table td {
    padding: 12px 16px !important; /* GP sometimes injects padding */
    border-bottom: 1px solid #D1D5DB;
    font-size: 15px;
}

/* Alternate row colors */
.spec-table tbody tr:nth-child(even) {
    background: #E0E0E0;
}

.spec-table tbody tr:nth-child(odd) {
    background: #F5F5F5;
}

/* ================================
   Buttons
================================ */
.spec-button {
    background: #4B4B4B;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 16px;
    display: inline-block;
}

/* ================================
   Links
================================ */
.spec-link {
    color: #1E3A8A;
    text-decoration: underline;
}

/* ================================
   Container
================================ */n
.spec-container {
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.6;
    color: #333;
    font-family: system-ui, sans-serif;
}