/* === Bewertungs-App — Styles === */

:root {
    --primary: #4a90d9;
    --primary-dark: #357abd;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --bg: #f8f9fa;
    --card-bg: #ffffff;
    --border: #e1e8ed;
    --star-empty: #dcdde1;
    --star-filled: #f1c40f;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.35;
    min-height: 100vh;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 1.5rem;
}

header h1 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

header p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.4;
}

/* Flashes */
.flashes {
    margin-bottom: 0.6rem;
}

.flash {
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius);
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.flash-error {
    background: #fdf0ef;
    border: 1px solid #f5c6cb;
    color: var(--danger);
}

.flash-success {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: var(--success);
}

.flash-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: var(--primary);
}

/* Vote Form */
.vote-form {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow);
}

.rating-section {
    margin-bottom: 0.45rem;
}

.rating-row {
    margin-bottom: 0;
    padding: 0.38rem 0 0.42rem;
    border-bottom: 1px solid var(--border);
}

.rating-row.missing-required {
    background: #fff3f3;
    box-shadow: inset 0 0 0 1px #efb4b4;
    border-radius: var(--radius);
    padding-left: 0.55rem;
    padding-right: 0.55rem;
}

.rating-row.missing-required .rating-label {
    color: #b42318;
}

.rating-row:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.rating-label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text);
    line-height: 1.2;
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
    line-height: 1;
}

.star-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.star {
    font-size: 50px;
    line-height: 1;
    color: var(--star-empty);
    cursor: pointer;
    transition: color 0.15s ease;
    user-select: none;
    padding: 0.03rem 0.06rem;
    display: inline-block;
}

.rating-hint {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.08rem;
    line-height: 1.15;
}

.rating-row.rated .rating-hint {
    color: var(--success);
}

/* Comment */
.comment-section {
    margin-top: 0.35rem;
    margin-bottom: 0.45rem;
}

.comment-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.18rem;
    line-height: 1.2;
}

.optional {
    font-weight: normal;
    color: var(--text-light);
    font-size: 0.85rem;
}

.comment-textarea {
    width: 100%;
    min-height: 58px;
    height: 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.65rem;
    font-size: 0.92rem;
    line-height: 1.25;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.char-count {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.08rem;
    line-height: 1.1;
}

/* Submit */
.submit-btn {
    width: 100%;
    padding: 0.62rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    background: var(--star-empty);
    cursor: not-allowed;
}

/* Thank You */
.thank-you-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.thank-you-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.thank-you-box h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.thank-you-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.ref {
    font-family: monospace;
    color: var(--primary) !important;
    font-weight: 600;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* === Admin Area === */

.admin-body {
    background: #1a1d23;
}

.admin-wrapper {
    min-height: 100vh;
}

.admin-nav {
    background: #23272f;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #2d323c;
}

.nav-link {
    color: #b0b8c4;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: white;
    background: #2d323c;
}

.nav-link.active {
    color: white;
    background: var(--primary);
}

.nav-logout {
    margin-left: auto;
    color: var(--danger) !important;
}

.nav-logout:hover {
    background: rgba(231, 76, 60, 0.15) !important;
}

.admin-content {
    padding: 2rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dashboard h2 {
    color: #e8ecf1;
    margin: 1.5rem 0 1rem;
    font-size: 1.15rem;
}

/* Period Filter */
.period-filter {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.filter-group label {
    color: #b0b8c4;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input[type="date"] {
    padding: 0.4rem 0.6rem;
    border: 1px solid #2d323c;
    border-radius: 4px;
    background: #23272f;
    color: white;
    font-size: 0.9rem;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.custom-dates {
    display: none;
    gap: 0.75rem;
}

/* Summary Box */
.summary-box {
    background: linear-gradient(135deg, #2d323c, #23272f);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.summary-box h2 {
    margin: 0;
}

.summary-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.summary-item {
    text-align: center;
}

.summary-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.summary-label {
    font-size: 0.8rem;
    color: #8b95a5;
}

/* Stats Table */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    background: #23272f;
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-table th,
.stats-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #2d323c;
}

.stats-table th {
    background: #2a2e38;
    color: #8b95a5;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-table td {
    color: #e8ecf1;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-table a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.stats-table a:hover {
    text-decoration: underline;
}

.avg-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avg-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.distribution {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #8b95a5;
}

.distribution span {
    padding: 0.15rem 0.35rem;
    background: #2a2e38;
    border-radius: 3px;
}

/* Submissions Table */
.submissions-table {
    width: 100%;
    border-collapse: collapse;
    background: #23272f;
    border-radius: var(--radius);
    overflow: hidden;
}

.submissions-table th,
.submissions-table td {
    padding: 0.6rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid #2d323c;
    font-size: 0.9rem;
}

.submissions-table th {
    background: #2a2e38;
    color: #8b95a5;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.submissions-table td {
    color: #d1d5db;
}

.submissions-table a {
    color: var(--primary);
    text-decoration: none;
}

.submissions-table a:hover {
    text-decoration: underline;
}

/* Distribution Box */
.distribution-box table {
    width: 100%;
    max-width: 400px;
}

.distribution-box td {
    padding: 0.4rem 0;
}

.dist-bar {
    width: 120px;
    background: #2a2e38;
    border-radius: 3px;
    overflow: hidden;
}

.dist-fill {
    height: 1.2rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 3px;
    min-width: 0;
}

/* Comments Table */
.comments-table {
    width: 100%;
    border-collapse: collapse;
    background: #23272f;
    border-radius: var(--radius);
    overflow: hidden;
}

.comments-table th,
.comments-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #2d323c;
}

.comments-table th {
    background: #2a2e38;
    color: #8b95a5;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.comments-table td {
    color: #d1d5db;
}

.comments-table td:nth-child(2) {
    max-width: 500px;
    white-space: pre-wrap;
    word-break: break-word;
}

.comments-table a {
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
}

.comments-table a:hover {
    text-decoration: underline;
}

/* Detail Page */
.detail-page {
    max-width: 700px;
}

.detail-page .back-link {
    color: #b0b8c4;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.detail-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.submission-pager {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pager-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.7rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    background: #ffffff;
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.pager-button:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.pager-button.disabled {
    color: #9ca3af;
    background: #f3f4f6;
    cursor: not-allowed;
}

.detail-page .back-button {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.detail-page .back-button:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.ratings-table-wrapper {
    overflow-x: auto;
}

.ratings-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.ratings-table th,
.ratings-table td {
    padding: 0.7rem 0.75rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #2d323c;
}

.ratings-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ratings-table th:first-child,
.ratings-table td:first-child {
    width: 55%;
}

.ratings-table th:nth-child(2),
.ratings-table td:nth-child(2) {
    width: 27%;
}

.ratings-table th:last-child,
.ratings-table td:last-child {
    width: 18%;
}

.ratings-table .rating-stars {
    white-space: nowrap;
    color: var(--star-filled);
    font-size: 1.25rem;
}

.ratings-table .rating-value {
    white-space: nowrap;
    font-weight: 700;
}

.detail-card {
    background: #23272f;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.detail-card h1 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.detail-card h2 {
    color: #e8ecf1;
    font-size: 1.1rem;
    margin: 1.25rem 0 0.75rem;
}

.detail-meta {
    color: #8b95a5;
    font-size: 0.9rem;
}

.ratings-list {
    margin: 0.5rem 0;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #2d323c;
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-topic {
    font-weight: 600;
    color: #d1d5db;
    min-width: 180px;
}

.rating-stars {
    color: var(--star-filled);
    font-size: 1.1rem;
}

.rating-value {
    color: #8b95a5;
    font-size: 0.9rem;
    margin-left: auto;
}

.detail-avg {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2d323c;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.detail-avg .stars {
    color: var(--star-filled);
    font-size: 1.2rem;
}

.detail-avg span:last-child {
    color: #8b95a5;
}

.detail-comment {
    background: #2a2e38;
    padding: 1rem;
    border-radius: var(--radius);
    color: #d1d5db;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.7;
}

/* Login Box */
.login-box {
    max-width: 380px;
    margin: 4rem auto;
    text-align: center;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.login-box h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.login-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

/* Empty State */
.empty-state {
    text-align: center;
    color: #8b95a5;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0.45rem 0.6rem;
    }

    header {
        margin-bottom: 1.2rem;
    }

    header h1 {
        font-size: 1.45rem;
        margin-bottom: 0.5rem;
    }

    header p {
        font-size: 0.82rem;
    }

    .vote-form {
        padding: 0.6rem 0.7rem;
    }

    .rating-section {
        margin-bottom: 0.3rem;
    }

    .rating-row {
        padding: 0.28rem 0 0.32rem;
    }

    .rating-label {
        font-size: 0.88rem;
        margin-bottom: 0.04rem;
    }

    .star {
        font-size: 38px;
        padding: 0.02rem 0.04rem;
    }

    .rating-hint {
        font-size: 0.72rem;
        margin-top: 0.04rem;
    }

    .comment-section {
        margin-top: 0.25rem;
        margin-bottom: 0.3rem;
    }

    .comment-label {
        font-size: 0.88rem;
        margin-bottom: 0.12rem;
    }

    .comment-textarea {
        min-height: 50px;
        height: 50px;
        padding: 0.4rem 0.5rem;
        font-size: 0.86rem;
    }

    .char-count {
        font-size: 0.68rem;
        margin-top: 0.04rem;
    }

    .submit-btn {
        padding: 0.5rem;
        font-size: 0.92rem;
    }

    .admin-nav {
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .admin-content {
        padding: 1rem;
    }

    .summary-stats {
        gap: 1rem;
    }

    .stats-table th,
    .stats-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .distribution {
        gap: 0.4rem;
    }

    .rating-topic {
        min-width: auto;
    }

    .rating-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .period-filter {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.3rem 0.4rem;
    }

    header h1 {
        font-size: 1.3rem;
    }

    header p {
        font-size: 0.76rem;
    }

    .vote-form {
        padding: 0.5rem 0.6rem;
    }

    .rating-row {
        padding: 0.24rem 0 0.28rem;
    }

    .rating-label {
        font-size: 0.84rem;
    }

    .star {
        font-size: 38px;
    }

    .comment-textarea {
        min-height: 46px;
        height: 46px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 0.48rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .distribution {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

/* === Admin Area: helles, besser lesbares Theme === */
.admin-body {
    background: #f3f6fa;
    color: #111827;
}

.admin-body .admin-nav {
    background: #ffffff;
    border-bottom: 1px solid #d9e1ea;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.admin-body .nav-link {
    color: #374151;
}

.admin-body .nav-link:hover {
    color: #111827;
    background: #edf2f7;
}

.admin-body .nav-link.active {
    color: #ffffff;
    background: var(--primary);
}

.admin-body .admin-content,
.admin-body .dashboard h1,
.admin-body .dashboard h2,
.admin-body .summary-label,
.admin-body .summary-value,
.admin-body .filter-group label,
.admin-body .form-group label,
.admin-body .detail-page .back-link,
.admin-body .detail-meta,
.admin-body .empty-state,
.admin-body .detail-card h1,
.admin-body .detail-card h2,
.admin-body .rating-topic,
.admin-body .rating-value,
.admin-body .avg-value,
.admin-body .detail-avg,
.admin-body .detail-avg span:last-child,
.admin-body .login-box p,
.admin-body .optional,
.admin-body .char-count,
.admin-body .ref,
.admin-body .thank-you-box p,
.admin-body .stats-table td,
.admin-body .submissions-table td,
.admin-body .comments-table td,
.admin-body .comments-table th,
.admin-body .stats-table th,
.admin-body .submissions-table th,
.admin-body .comments-table a,
.admin-body .stats-table a,
.admin-body .submissions-table a,
.admin-body .back-link {
    color: #111827;
}

.admin-body .dashboard h2,
.admin-body .login-box p,
.admin-body .optional,
.admin-body .char-count,
.admin-body .detail-meta,
.admin-body .empty-state {
    color: #4b5563;
}

.admin-body .summary-box,
.admin-body .detail-card,
.admin-body .login-box,
.admin-body .vote-form,
.admin-body .thank-you-box,
.admin-body .stats-table,
.admin-body .submissions-table,
.admin-body .comments-table,
.admin-body .dist-bar,
.admin-body .detail-comment,
.admin-body .filter-group select,
.admin-body .filter-group input[type="date"],
.admin-body .form-group input,
.admin-body .form-group textarea,
.admin-body .comment-textarea {
    background: #ffffff;
    color: #111827;
}

.admin-body .summary-box,
.admin-body .detail-card,
.admin-body .login-box,
.admin-body .vote-form,
.admin-body .thank-you-box {
    border: 1px solid #dbe3ec;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.admin-body .stats-table th,
.admin-body .submissions-table th,
.admin-body .comments-table th {
    background: #f3f6fa;
    color: #374151;
}

.admin-body .stats-table td,
.admin-body .submissions-table td,
.admin-body .comments-table td,
.admin-body .rating-topic,
.admin-body .detail-card h1,
.admin-body .detail-card h2,
.admin-body .detail-avg span:last-child {
    color: #111827;
}

.admin-body .stats-table tr:last-child td,
.admin-body .submissions-table tr:last-child td,
.admin-body .comments-table tr:last-child td {
    border-bottom: none;
}

.admin-body .stats-table td,
.admin-body .submissions-table td,
.admin-body .comments-table td,
.admin-body .comments-table th,
.admin-body .stats-table th,
.admin-body .submissions-table th {
    border-bottom: 1px solid #e5e7eb;
}

.admin-body .detail-comment {
    color: #111827;
    border: 1px solid #e5e7eb;
}

.admin-body .filter-group select,
.admin-body .filter-group input[type="date"],
.admin-body .form-group input,
.admin-body .form-group textarea,
.admin-body .comment-textarea {
    color: #111827;
    border: 1px solid #cbd5e1;
}

.admin-body .filter-group select:focus,
.admin-body .filter-group input:focus,
.admin-body .form-group input:focus,
.admin-body .form-group textarea:focus,
.admin-body .comment-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.admin-body .distribution span {
    background: #eef2f7;
    color: #334155;
}

.admin-body .rating-item,
.admin-body .detail-avg,
.admin-body .detail-page .back-link:hover {
    color: #111827;
}

.admin-body .detail-page .back-link {
    color: var(--primary-dark);
}

.admin-body .detail-page .back-link:hover {
    color: var(--primary);
}

.admin-body .nav-logout {
    color: var(--danger) !important;
}

.admin-body .flash-error {
    background: #fff1f2;
    color: #b91c1c;
    border-color: #fecdd3;
}

.admin-body .flash-success {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}

.admin-body .flash-info {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.admin-body .ratings-table th,
.admin-body .ratings-table td {
    color: #111827;
    border-bottom-color: #e5e7eb;
}

.admin-body .ratings-table th {
    background: #f3f6fa;
    color: #374151;
}

.admin-body .ratings-table .rating-stars {
    color: #f1c40f;
}

.admin-body .ratings-table .rating-value {
    color: #111827;
}

.admin-body .avg-cell {
    gap: 0.65rem;
    white-space: nowrap;
}

.admin-body .avg-value {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 800;
}

.admin-body .stars {
    color: #f1c40f;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
}

.admin-body .submissions-table .avg-value {
    font-size: 1.1rem;
}

.admin-body .submissions-table .stars {
    font-size: 1.2rem;
}

.admin-body .inline-setting {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-body .inline-setting label {
    display: inline;
    margin: 0;
}

.admin-body .form-group select {
    min-width: 9rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    background: #ffffff;
    color: #111827;
    font-size: 1rem;
}

.admin-body .submit-btn,
.admin-body .submit-btn:hover,
.admin-body .submit-btn:active {
    color: #ffffff;
}
