.scr-public-container {
    font-family: inherit;
    margin: 20px 0;
}
.scr-public-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}
.scr-pub-stroke-btn {
    padding: 12px 24px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.scr-pub-stroke-btn:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}
.scr-pub-stroke-btn.active {
    background: var(--scr-primary, #0073aa);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.scr-pub-gender-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scr-pub-gender-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.scr-pub-gender-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--scr-secondary, #005177);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--scr-primary, #0073aa);
    padding-bottom: 10px;
}

.scr-pub-table-wrap {
    overflow-x: auto;
}

.scr-pub-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.scr-pub-table th, .scr-pub-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}
.scr-pub-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 600;
}
.scr-pub-table th.dist-header {
    text-align: center;
    background: var(--scr-secondary, #005177);
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.scr-pub-table tr:hover td {
    background-color: #f8fafc;
}

.scr-pub-record-cell {
    border-left: 1px solid #f1f5f9;
}
.scr-pub-record-name {
    font-weight: bold;
    color: var(--scr-primary, #0073aa);
}
.scr-pub-record-meta {
    font-size: 0.85em;
    color: #64748b;
}

.scr-public-loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #64748b;
}
