:root {
    --primary: #0e3635; /* Custom Dark Teal/Green */
    --primary-hover: #164f4e;
    --primary-light: rgba(14, 54, 53, 0.15);
    --primary-glow: rgba(14, 54, 53, 0.4);
    
    --success: #008A4B; /* Aramco Green */
    --success-hover: #006D3B;
    --danger: #D32F2F;
    --danger-hover: #B71C1C;
    --warning: #F57C00;
    
    --bg: #0b1218; /* Custom Dark Background */
    --surface: #13222b; /* Custom Surface Card Color */
    --surface-hover: #1c313d;
    --border: #22414a; /* Custom Border Color */
    --border-active: #0e3635;
    
    --text: #FFFFFF;
    --text-muted: #c8d2d8; /* Custom Light Text */
    --text-dark: #0b1218;
    
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(900px, 92%);
    margin: 40px auto;
}

.container-fluid {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
}

main {
    flex: 1;
}

/* Header & Footer styling */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(19, 34, 43, 0.5);
    backdrop-filter: blur(10px);
}

.footer {
    padding: 25px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--border);
    margin-top: 50px;
}

/* Premium Card Layout */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    transition: var(--transition);
}

.survey-card {
    position: relative;
    overflow: hidden;
}

/* Question Sections inside the single-page layout */
.question-section {
    padding: 35px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    border-radius: 8px;
}

.question-section:last-of-type {
    border-bottom: none;
}

.question-section h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 10px;
}

/* Validation Flash Highlight Effect */
.highlight-flash {
    animation: pulseBorder 1.5s ease-in-out;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 var(--primary-glow);
        background: transparent;
    }
    30% {
        box-shadow: 0 0 15px 5px var(--primary-glow);
        background: rgba(14, 54, 53, 0.08);
    }
    100% {
        box-shadow: 0 0 0 0 var(--primary-glow);
        background: transparent;
    }
}

/* Utility styles */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.btn-block { display: block; width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
}
.btn-primary:hover:not(:disabled) {
    background: var(--primary-hover);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
}
.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-success {
    background: var(--success);
    color: #fff;
}
.btn-success:hover:not(:disabled) {
    background: var(--success-hover);
    box-shadow: 0 0 15px rgba(0, 138, 75, 0.4);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover:not(:disabled) {
    background: var(--danger-hover);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

/* Logo & Survey Header styling */
.logo {
    max-width: 280px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 2px 8px rgba(14, 54, 53, 0.4));
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.9;
}

.description {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 15px auto 25px;
    opacity: 0.8;
}

/* Progress bar container (Single Page dynamic tracker) */
.progress-container {
    max-width: 500px;
    margin: 25px auto 10px;
    background: rgba(19, 34, 43, 0.6);
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.progress-bar-wrapper {
    height: 8px;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.form-help {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.75;
}

/* Input Fields styling */
.form-group {
    max-width: 100%;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
    max-width: 500px;
}

input[type="email"],
input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: rgba(11, 18, 24, 0.6);
    color: #fff;
    border-radius: var(--radius);
    outline: none;
    font-size: 16px;
    transition: var(--transition);
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(11, 18, 24, 0.9);
}

textarea {
    resize: none;
}

.char-count-wrapper {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Radio Cards Grid */
.card-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(11, 18, 24, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.card-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    transition: var(--transition);
}

.option-card:hover {
    border-color: var(--text-muted);
    background: rgba(11, 18, 24, 0.7);
}

.option-card input[type="radio"]:checked + .card-circle {
    border-color: var(--primary-hover);
}

.option-card input[type="radio"]:checked + .card-circle::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-card input[type="radio"]:checked ~ .card-label {
    color: #fff;
    font-weight: 600;
}

.option-card:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 8px var(--primary-glow);
}

.card-label {
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

/* True / False cards styles */
.tf-grid {
    max-width: 500px;
}
.tf-card {
    padding: 24px;
}
.tf-card:has(input[type="radio"]:checked).true-card {
    border-color: var(--danger);
    background: rgba(211, 47, 47, 0.1);
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.2);
}
.tf-card:has(input[type="radio"]:checked).true-card .card-circle {
    border-color: var(--danger);
}
.tf-card:has(input[type="radio"]:checked).true-card .card-circle::after {
    background: var(--danger);
}
.tf-card:has(input[type="radio"]:checked).false-card {
    border-color: var(--success);
    background: rgba(0, 138, 75, 0.1);
    box-shadow: 0 0 8px rgba(0, 138, 75, 0.2);
}
.tf-card:has(input[type="radio"]:checked).false-card .card-circle {
    border-color: var(--success);
}
.tf-card:has(input[type="radio"]:checked).false-card .card-circle::after {
    background: var(--success);
}

/* Interactive click-to-rank layout */
.ranking-container {
    max-width: 550px;
    margin: 0 auto;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ranking-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(11, 18, 24, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.ranking-card:hover {
    border-color: var(--primary);
    background: rgba(11, 18, 24, 0.7);
}

.rank-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px dashed var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.ranking-card.ranked {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 8px var(--primary-glow);
}

.ranking-card.ranked .rank-badge {
    border-style: solid;
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
}

.rank-name {
    font-size: 15px;
    font-weight: 500;
}

/* Satisfaction Cards layout */
.satisfaction-scale {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.satisfaction-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: rgba(11, 18, 24, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    user-select: none;
    position: relative;
}

.satisfaction-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.sat-emoji {
    font-size: 32px;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.sat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.satisfaction-card:hover {
    border-color: var(--primary);
    background: rgba(11, 18, 24, 0.7);
}

.satisfaction-card:hover .sat-emoji {
    transform: scale(1.15);
}

.satisfaction-card:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 8px var(--primary-glow);
}

.satisfaction-card:has(input[type="radio"]:checked) .sat-emoji {
    transform: scale(1.25);
}

.satisfaction-card:has(input[type="radio"]:checked) .sat-label {
    color: #fff;
    font-weight: 600;
}

/* Presentation rating row list */
.presentation-ratings-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.pres-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(11, 18, 24, 0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pres-name {
    font-weight: 500;
    font-size: 15px;
    max-width: 500px;
}

.pres-stars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.rating-legend {
    display: flex;
    justify-content: space-between;
    width: 180px;
    font-size: 10px;
    color: var(--text-muted);
    padding: 0 4px;
}

.stars-group {
    display: flex;
    gap: 6px;
}

.star-rating-cell {
    position: relative;
    cursor: pointer;
}

.star-rating-cell input {
    position: absolute;
    opacity: 0;
}

.star-pill {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.25);
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.star-rating-cell:hover .star-pill {
    border-color: var(--text-muted);
}

.star-rating-cell:has(input:checked) .star-pill {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 8px var(--primary-glow);
}

/* Thank You screen scorecard layout */
.thankyou-card {
    max-width: 700px;
    margin: 40px auto;
}

.thankyou-icon-wrapper {
    margin-bottom: 25px;
}

/* Animated SVG Vector Checkmark */
.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: var(--success);
    stroke-miterlimit: 10;
    margin: 0 auto 20px;
    box-shadow: inset 0px 0px 0px rgba(0, 138, 75, 0.2);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: var(--success);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--success);
    stroke-width: 4;
    stroke-linecap: round;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px rgba(0, 138, 75, 0.1);
    }
}

/* Thank you scorecard and comparison grid */
.thankyou-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin: 5px 0 30px;
    opacity: 0.8;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Toast message styles */
.survey-toast {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, bottom 0.3s ease;
}

.survey-toast.show {
    bottom: 30px;
    opacity: 1;
}

/* Admin Login Layout */
.login-card {
    max-width: 450px;
    margin: 60px auto;
}

.login-form {
    margin-top: 30px;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.alert-danger {
    background: rgba(211, 47, 47, 0.15);
    border: 1px solid var(--danger);
    color: #ff8a8a;
}

/* Admin Dashboard styles */
.dashboard-container {
    padding-top: 20px;
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon-wrapper.blue { background: rgba(0, 163, 166, 0.15); color: var(--primary); }
.stat-icon-wrapper.green { background: rgba(0, 138, 75, 0.15); color: var(--success); }
.stat-icon-wrapper.gold { background: rgba(251, 192, 45, 0.15); color: #FBC02D; }

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-value .max-val {
    font-size: 16px;
    color: var(--text-muted);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* Dashboard Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.span-2 {
    grid-column: span 2;
}

.chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.chart-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.chart-wrapper {
    height: 250px;
    position: relative;
}

/* Dashboard responses list table */
.data-table-card {
    padding: 24px;
}

.table-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-header-row h2 {
    font-size: 18px;
    font-weight: 600;
}

.table-search-wrapper {
    width: 300px;
}

.table-search-wrapper input {
    padding: 10px 16px;
    font-size: 14px;
}

.table-responsive {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.dashboard-table th {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}

.dashboard-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.table-row-main {
    transition: var(--transition);
}

.table-row-main:hover {
    background: rgba(255, 255, 255, 0.02);
}

.email-cell {
    font-weight: 500;
}

.score-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.score-badge.gold { background: rgba(0, 138, 75, 0.15); color: #00E676; border: 1px solid rgba(0, 230, 118, 0.3); }
.score-badge.silver { background: rgba(14, 54, 53, 0.25); color: var(--text-muted); border: 1px solid var(--border); }
.score-badge.bronze { background: rgba(211, 47, 47, 0.15); color: #FF5252; border: 1px solid rgba(255, 82, 82, 0.3); }

.btn-detail-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-detail-toggle:hover {
    border-color: var(--primary);
    background: rgba(14, 54, 53, 0.1);
}

.detail-expanded {
    background: rgba(14, 54, 53, 0.04);
}

/* Expandable row drawer */
.table-row-details td {
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.hidden-detail {
    display: none;
}

.details-panel-content {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: slideDown 0.3s ease;
}

.detail-section {
    background: rgba(11, 18, 24, 0.4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.detail-section.full-width {
    grid-column: span 2;
}

.detail-section h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.detail-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.sub-detail-ranking {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.sub-detail-ranking span {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid var(--border);
}

.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 5px;
}

.badge-success { background: rgba(0, 138, 75, 0.15); color: #00E676; }
.badge-danger { background: rgba(211, 47, 47, 0.15); color: #FF5252; }
.badge-neutral { background: rgba(255, 255, 255, 0.05); color: #fff; }

.presentation-scores-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.pres-score-item {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 6px 10px;
    border-radius: 4px;
}

.pres-lbl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
}

.suggestions-comment-text {
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 6px;
    white-space: pre-line;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }
    h1 {
        font-size: 24px;
    }
    .subtitle {
        font-size: 15px;
    }
    .card {
        padding: 24px 16px;
    }
    .charts-grid {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: span 1;
    }
    .satisfaction-scale {
        flex-wrap: wrap;
    }
    .satisfaction-card {
        flex: unset;
        width: calc(50% - 5px);
    }
    .pres-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .pres-stars-wrapper {
        align-items: flex-start;
        width: 100%;
    }
    .details-panel-content {
        grid-template-columns: 1fr;
    }
    .detail-section.full-width {
        grid-column: span 1;
    }
    .ranking-comparison {
        grid-template-columns: 1fr;
    }
    .admin-header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .score-display-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .score-rank {
        text-align: center;
    }
}