.partners-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Base cell styling */
.partners-table th,
.partners-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

/* Header styling */
.partners-table th {
    background: #eee;
}

/* Hover row */
.partners-table tr:hover {
    background: #f9f9f9;
}

/* Links */
.partners-table a {
    color: #0077cc;
    text-decoration: none;
}

.partners-table a:hover {
    text-decoration: underline;
}

/* ============================
   FIXED COLUMN WIDTHS
   ============================ */

/* Store column */
.partners-table th:nth-child(1),
.partners-table td:nth-child(1) {
    width: 260px;
}

/* Location column */
.partners-table th:nth-child(2),
.partners-table td:nth-child(2) {
    width: 220px;
}

/* Website column auto-expands */
.partners-table th:nth-child(3),
.partners-table td:nth-child(3) {
    width: auto;
}

/* ============================
   STATE HEADER
   ============================ */
.state-header {
    margin-top: 40px;
    font-size: 28px;
    border-bottom: 3px solid #333;
    padding-bottom: 5px;
}
