#sonntagsfrage-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
}
.sf-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.sf-vote-btn {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    border-radius: 4px;
}
.sf-vote-btn:hover {
    background: #eaeaea;
}
#sf-seat-distribution, #sf-coalitions {
    background: #f1f5f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

/* Neue Styles für die Historien-Tabelle */
.sf-table-responsive {
    overflow-x: auto;
    margin-top: 15px;
    padding-bottom: 15px;
}
.sf-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 13px;
}
.sf-history-table th, 
.sf-history-table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    text-align: center;
    white-space: nowrap;
}
.sf-history-table th {
    background-color: #f1f5f9;
    font-weight: bold;
}
.sf-history-table th:first-child, 
.sf-history-table td:first-child {
    text-align: left;
}
.sf-history-table td small {
    color: #666;
    font-size: 11px;
    display: block; /* Prozentwert rückt in eine neue Zeile */
    margin-top: 3px;
}