:root {
    /* Theme Variables - Default Light (White/Pink/Cute) */
    --bg-app: #FDF2F8;
    /* Pink 50 */
    --bg-sidebar: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-hover: #FCE7F3;
    /* Pink 100 */
    --bg-active: #F472B6;
    /* Pink 400 */
    --primary-color: #DB2777;
    /* Pink 600 - High Contrast */

    --text-primary: #374151;
    /* Gray 700 */
    --text-secondary: #9CA3AF;
    /* Gray 400 */
    --text-score: #DB2777;
    /* Pink 600 */

    --border-color: #F3E8FF;
    --card-border: #FBCFE8;

    --shadow-color: transparent;
    /* No colored glow */
    --shadow-card: none;
    /* Flat design requested */

    --font-main: 'Inter', sans-serif;
}

body.dark-mode {
    /* Dark Theme Overrides */
    --bg-app: #18181B;
    /* Zinc 950 */
    --bg-sidebar: #27272A;
    /* Zinc 800 - Reverted from pure black */
    --bg-card: #27272A;
    /* Zinc 800 */
    --bg-hover: #3F3F46;
    /* Zinc 700 */
    --bg-active: #EC4899;
    /* Pink 500 */
    --primary-color: #F472B6;
    /* Pink 400 */

    --text-primary: #F4F4F5;
    /* Zinc 100 */
    --text-secondary: #A1A1AA;
    /* Zinc 400 */
    --text-score: #F472B6;
    /* Pink 400 */

    --border-color: #3F3F46;
    --card-border: #3F3F46;

    --shadow-color: transparent;
    --shadow-card: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-app);
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Layout */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Theme Toggle Button Refinement */
.theme-toggle {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'Segoe UI Emoji', 'Twemoji Mozilla', 'Apple Color Emoji', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    /* Removed transition/transform animations */
}

.theme-toggle:hover {
    background: var(--bg-hover);
    opacity: 1;
    box-shadow: none;
}

.theme-toggle:active {
    opacity: 0.8;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-shrink: 0;
    box-shadow: none;
    /* Removed sidebar shadow */
}

.sidebar-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Image Style */
.sidebar-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    /* Darker for light mode */
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-item:hover {
    background-color: var(--bg-hover);
    color: #DB2777;
    /* Darker Pink */
}

.nav-item.active {
    background-color: var(--bg-active);
    color: #fff;
    box-shadow: none;
}

.sidebar-footer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: auto;
    text-align: center;
}

/* Sidebar Auth */
.sidebar-auth {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.btn-login {
    display: block;
    background-color: #EC4899;
    /* Pink 500 */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: none;
    /* Removed button shadow */
}

.btn-login:hover {
    background-color: #DB2777;
    transform: translateY(-1px);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.user-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-profile span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.btn-logout {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.btn-logout:hover {
    color: #EF4444;
    /* Red for logout */
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-app);
    overflow: hidden;
}

.content-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-app);
    /* Sticky header feel */
}

.content-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--bg-active);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.content-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Stats Cards */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-card h3 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* History List */
.section-header {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-item {
    background-color: var(--bg-card);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.match-item:hover {
    border-color: var(--bg-active);
    transform: translateY(-1px);
}

.match-info {
    flex: 1;
}

.match-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.match-score {
    font-size: 1.25rem;
    font-weight: 700;
    padding-left: 20px;
}

/* Player Styles & Avatars (Reuse from previous logic) */
.match-players {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.player-side {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #444;
}

.vs {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.winner-text {
    color: var(--bg-active);
    /* Use blue for winner instead of teal */
    font-weight: 600;
}

.loser-text {
    color: var(--text-secondary);
}


/* Modal (re-styled to fit theme) */
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--bg-card);
    /* Changes with theme */
    margin: 5% auto;
    padding: 0;
    /* Removing padding from container */
    border-radius: 32px;
    width: 90%;
    max-width: 800px;
    box-shadow: none;
    /* Glow removed */
    border: 4px solid var(--card-border);
    position: relative;
    max-height: 85vh;
    overflow: hidden;
    /* Clip everything including scrollbar */
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s, border-color 0.3s;
}

.modal-scroll-wrapper {
    overflow-y: auto;
    padding: 2rem;
    height: 100%;
    width: 100%;
    /* Scrollbar will be inside here */
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    /* Ensure z-index if needed */
    position: relative;
    z-index: 10;
}

.close-modal:hover {
    color: var(--text-score);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed var(--card-border);
}

.modal-players {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.player-avatar.large {
    width: 64px;
    height: 64px;
    border: 4px solid var(--bg-card);
    box-shadow: none;
}

.modal-score {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    /* Default base */
    margin-top: 10px;
    text-shadow: none;
    letter-spacing: -2px;
}

.modal-score span.score-winner {
    color: var(--text-score);
    /* Pink */
    font-weight: 900;
}

.modal-score span.score-loser {
    color: var(--text-primary);
    /* White/Gray */
    font-weight: 400;
    /* Thinner */
    opacity: 0.8;
    /* Slightly dimmed for effect */
}

/* Round Card (Cute Style) */
.match-round-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: none;
    /* Shadow removed */
    border: 2px solid var(--card-border);
}

.round-card-header {
    height: 90px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
}

/* Gradient overlay to make text readable on covers */
.round-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.round-map-title {
    text-decoration: none;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    margin-right: 130px;
    /* Ensure space for Winner Banner */
    display: block;
}

.round-map-title h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.map-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-id {
    font-size: 0.75rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    font-weight: 700;
}

.slot-badge {
    font-size: 0.75rem;
    color: #fff;
    background: #333;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
    box-shadow: none;
    /* Removed badge shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mod specific colors - keep vivid */
.slot-badge.nm {
    background-color: #60A5FA;
    border-color: #3B82F6;
}

.slot-badge.hd {
    background-color: #FACC15;
    border-color: #EAB308;
}

.slot-badge.hr {
    background-color: #F87171;
    border-color: #EF4444;
}

.slot-badge.dt {
    background-color: #C084FC;
    border-color: #A855F7;
}

.slot-badge.tb {
    background-color: #EC4899;
    border-color: #DB2777;
    color: white;
}

.slot-badge.fm {
    background-color: #4ADE80;
    border-color: #22C55E;
}

.round-card-body {
    padding: 1.2rem;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-hover);
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: background-color 0.2s;
}

.score-row:hover {
    /* No transform */
    background-color: var(--bg-app);
}

.score-row.border-blue {
    border-left: 5px solid #60A5FA;
}

.score-row.border-red {
    border-left: 5px solid #F87171;
}

.score-row.row-winner {
    background-color: var(--bg-card);
    border: 2px solid var(--bg-active);
    box-shadow: none;
    /* Glow removed */
    z-index: 10;
}

.row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.row-avatar {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    background: #E5E7EB;
    border: 2px solid var(--bg-card);
}

.row-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.row-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stat-val {
    font-size: 1rem;
    font-weight: 600;
    font-family: monospace;
    color: var(--text-primary);
}

.stat-val.miss {
    color: #EF4444;
    font-weight: 800;
}

.score-main {
    font-size: 1.6rem;
    font-weight: 500;
    /* Thinner for loser */
    color: var(--text-primary);
    /* White in dark mode, Dark in light mode */
    min-width: 140px;
    text-align: right;
    letter-spacing: -1px;
}

.row-winner .score-main {
    font-weight: 800;
    /* Bold for winner */
    color: var(--text-score);
    /* Pink for winner */
}

/* Old .round-item styles removed */

/* Leaderboard Table */
.leaderboard-container {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    overflow-x: auto;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table th {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.leaderboard-table tr:hover {
    background-color: var(--bg-hover);
}

.leaderboard-table tr:last-child td {
    border-bottom: none;
}

/* Settings Styles */
.settings-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 600px;
}

.settings-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.language-selector {
    display: flex;
    gap: 15px;
}

.btn-lang {
    background-color: #333;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-lang.active,
.btn-lang:hover {
    background-color: var(--bg-active);
    color: white;
    border-color: var(--bg-active);
}

/* Winner Crown */
.winner-crown {
    margin-left: 6px;
    font-size: 1.1rem;
    filter: none;
    /* Removed drop-shadow */
}

/* Winner Row Highlight (Optional) */


.round-card-header {
    position: relative;
    /* Ensure child absolute elements position relative to this */
}

/* Winner Banner Overlay */
/* Winner Banner Overlay */
.winner-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: none;
    /* Removed text shadow */
    z-index: 5;
    white-space: nowrap;
    box-shadow: none;
    /* Removed box shadow */
    pointer-events: none;
}

.winner-banner.win-blue {
    background: #3B82F6;
    /* Solid Blue */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.winner-banner.win-red {
    background: #EF4444;
    /* Solid Red */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bg-active);
}

/* Theme Toggle Button Refinement */
.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover {
    background: var(--bg-hover);
    color: var(--bg-active);
    border-color: var(--bg-active);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.theme-toggle:active {
    transform: translateY(1px);
}

/* Mappools View */
.pools-header {
    margin-bottom: 20px;
}

.rank-tabs {
    display: flex;
    gap: 10px;
}

.rank-tab {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.rank-tab:hover {
    background: var(--bg-hover);
}

.rank-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
    /* Prevent neighbors from stretching */
}

.map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

/* Pool Map Item Styled */
.pool-map-item {
    position: relative;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-hover);
    /* Fallback */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pool-map-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.pool-map-text {
    flex: 1;
    min-width: 0;
    /* Critical for text-overflow to work in flex */
    display: flex;
    flex-direction: column;
}

.pool-map-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.pool-map-artist {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.pool-map-mod {
    font-size: 0.85rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    color: white;
    text-shadow: none;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Match History Colors */
/* Match History Colors - Inverted for Mappool (White BG) */
.mod-nm {
    background-color: white;
    border-color: #3B82F6;
    color: #3B82F6 !important;
}

.mod-hd {
    background-color: white;
    border-color: #EAB308;
    color: #EAB308 !important;
}

.mod-hr {
    background-color: white;
    border-color: #EF4444;
    color: #EF4444 !important;
}

.mod-dt {
    background-color: white;
    border-color: #A855F7;
    color: #A855F7 !important;
}

.mod-fm {
    background-color: white;
    border-color: #22C55E;
    color: #22C55E !important;
}

.mod-tb {
    background-color: white;
    border-color: #DB2777;
    color: #DB2777 !important;
}

.pool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s;
    cursor: pointer;
}

.pool-card:hover {
    transform: translateY(-2px);
    border-color: var(--bg-active);
}

.pool-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.pool-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 15px;
    align-items: center;
}

.pool-meta a {
    color: var(--bg-active);
    text-decoration: none;
    font-weight: 600;
}

.pool-meta a:hover {
    text-decoration: underline;
}

/* Tournament Grouping & Accordion */
.tournament-card {
    padding: 0 !important;
    /* Override default padding */
    overflow: hidden;
    cursor: default;
    transition: all 0.3s ease;
}

.pool-header {
    padding: 20px;
    cursor: pointer;
    background: var(--bg-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.pool-header:hover {
    background: var(--bg-hover);
}

.pool-header-content {
    flex: 1;
}

.pool-chevron {
    transition: transform 0.3s ease;
    margin-left: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.tournament-card.expanded .pool-chevron {
    transform: rotate(180deg);
}

.pool-stages-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-app);
}

.tournament-card.expanded .pool-stages-list {
    max-height: 1000px;
    /* Sufficient height for animation */
    border-top: 1px solid var(--border-color);
}

.pool-stage-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.2s;
    position: relative;
    padding-left: 30px;
    /* Indent for hierarchy look */
}

.pool-stage-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.2s;
}

.pool-stage-item:hover::before {
    opacity: 1;
}

.pool-stage-item:last-child {
    border-bottom: none;
}

.pool-stage-item:hover {
    background: var(--bg-hover);
    padding-left: 35px;
    /* Slight shift effect */
}

.stage-name {
    font-weight: 600;
    flex: 1;
    color: var(--text-primary);
}

.stage-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.pool-range {
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--primary-color);
}