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

:root {
    --bg: #f4efe8;
    --bg-alt: #ebe3da;
    --card: #ffffff;
    --text: #2d2a28;
    --muted: #6d635c;
    --primary: #c88419;
    --primary-dark: #a76a10;
    --dark: #4a241c;
    --white: #ffffff;
    --border: #ded6cf;
    --success: #dff3e5;
    --success-text: #1f6a34;
    --error: #fbe1e1;
    --error-text: #9a2d2d;
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* HEADER */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.thesis-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 14px;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 700;
    width: 100%;
}

.topbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo {
    height: 42px;
    width: auto;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: var(--primary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* DOMOV HERO */
.hero {
    min-height: 70vh;
    background: url('/images/hero.jpg') center / cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin-bottom: 14px;
}

.hero-content p {
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    margin-bottom: 28px;
}

/* PODSTRÁNKY HERO */
.page-hero {
    position: relative;
    color: var(--white);
    padding: 88px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 760px;
}

.small-hero {
    min-height: 280px;
    display: flex;
    align-items: center;
}

/* OBRÁZKY PRE PODSTRÁNKY */
.hero-o-nas {
    background-image: url('/images/o-nas.png');
}

.hero-menu {
    background-image: url('/images/menu.png');
}

.hero-rezervacia {
    background-image: url('/images/rezervacia.png');
}

.hero-kontakt {
    background-image: url('/images/kontakt.png');
}

/* SEKCIE */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.card {
    background: var(--card);
    padding: 36px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.card h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 18px;
}

/* GRIDY */
.features,
.menu-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.features {
    grid-template-columns: repeat(3, 1fr);
}

.menu-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-grid,
.footer-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.menu-card {
    background: var(--card);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.feature-card h3,
.menu-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.menu-title {
    margin: 48px 0 20px;
    font-size: 1.9rem;
    color: var(--dark);
    border-left: 5px solid var(--primary);
    padding-left: 14px;
}

.menu-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
}

.menu-meta small {
    color: var(--muted);
}

.menu-card strong {
    display: inline-block;
    margin-top: 0;
    margin-left: auto;
    color: var(--primary-dark);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* FORMULÁRE */
.form-wrapper {
    max-width: 920px;
}

.reservation-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    font-size: 1rem;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: #f3eee8;
    color: #8a817a;
    cursor: not-allowed;
}

.form-group select option:disabled,
.reservation-card .form-group select option:disabled {
    color: #8e857d;
}

.field-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    color: var(--muted);
}

.field-error {
    display: block;
    min-height: 1.15rem;
    margin-top: 6px;
    font-size: 0.84rem;
    color: var(--error-text);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select,
.form-group.has-error .country-select-trigger {
    border-color: #d25656;
    box-shadow: 0 0 0 3px rgba(210, 86, 86, 0.12);
}

/* BUTTONY */
.btn {
    display: inline-block;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

/* ALERTY */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
}

.alert-success {
    background: var(--success);
    color: var(--success-text);
}

.alert-error {
    background: var(--error);
    color: var(--error-text);
}

/* MAPA */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* REZERVÁCIA */
.reservation-layout-floor {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(340px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.floor-card,
.reservation-card {
    padding: 32px;
}

.floor-card {
    overflow: hidden;
    min-width: 0;
}

.reservation-card {
    min-width: 0;
}

.floor-card h2,
.reservation-card h2 {
    margin-bottom: 10px;
}

.reservation-card h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.floor-header p {
    color: var(--muted);
    margin-bottom: 18px;
}

.map-hint {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 6px;
    margin-bottom: 16px;
}

.floor-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.legend-box {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.legend-free {
    background: #ffffff;
}

.legend-selected {
    background: var(--primary);
}

.legend-disabled {
    background: #d4cec7;
}

.restaurant-map-scroll {
    width: 100%;
    max-width: 100%;
    max-height: 520px;
    overflow-x: auto;
    overflow-y: auto;
    border-radius: 28px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-x pan-y;
    border: 1px solid rgba(74, 36, 28, 0.08);
    background: #f7f3ee;
}

.restaurant-map-scroll:active {
    cursor: grabbing;
}

.restaurant-map {
    position: relative;
    width: 900px;
    min-width: 900px;
    height: 600px;
    background:
        linear-gradient(to right, rgba(74, 36, 28, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(74, 36, 28, 0.08) 1px, transparent 1px),
        #f7f3ee;
    background-size: 24px 24px;
    border: 2px solid #d7cfc7;
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(74, 36, 28, 0.04);
}

.restaurant-map::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 60px;
    background: linear-gradient(90deg, #5f2b1e, #7a3b28);
    border-radius: 18px;
}

.restaurant-map::after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 180px;
    height: 90px;
    border: 2px dashed rgba(74, 36, 28, 0.25);
    border-radius: 18px;
}

.map-label {
    position: absolute;
    z-index: 2;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--dark);
}

.bar-label {
    top: 42px;
    left: 42px;
    color: #fff;
}

.entrance-label {
    bottom: 54px;
    right: 62px;
}

.kitchen-label {
    top: 130px;
    right: 56px;
}

.restaurant-map button {
    position: absolute;
    z-index: 3;
    border: 2px solid #ccbfb2;
    background: #fff;
    color: var(--dark);
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: var(--shadow);
}

.restaurant-map button:hover:not(.disabled) {
    transform: translateY(-2px) scale(1.01);
    border-color: var(--primary);
}

.restaurant-map button.selected {
    background: var(--primary);
    border-color: var(--primary-dark);
    color: var(--white);
}

.restaurant-map button.disabled {
    background: #d8d1ca !important;
    color: #7a726a !important;
    border-color: #c9c1b9 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    opacity: 1;
}

.table-2,
.table-4,
.table-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 18px;
    font-weight: 800;
}

.table-2 {
    width: 110px;
    height: 78px;
}

.table-4 {
    width: 150px;
    height: 88px;
}

.table-6 {
    width: 190px;
    height: 96px;
}

.table-2 span,
.table-4 span,
.table-6 span {
    font-size: 1.3rem;
    line-height: 1;
}

.table-2 small,
.table-4 small,
.table-6 small {
    font-size: 0.85rem;
    font-weight: 700;
}

.selected-table-panel {
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.selected-table-panel p + p {
    margin-top: 6px;
}

/* PRAVÝ FORMULÁR V REZERVÁCII */
.reservation-card .reservation-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.reservation-card .form-group {
    margin-bottom: 16px;
}

.reservation-card .form-group input,
.reservation-card .form-group textarea,
.reservation-card .form-group select {
    width: 100%;
    min-width: 0;
}

.reservation-card .form-group input,
.reservation-card .form-group select {
    min-height: 48px;
}

.reservation-card .form-group textarea {
    min-height: 115px;
}

.reservation-card .btn {
    width: 100%;
}

/* CUSTOM COUNTRY SELECT */
.country-select {
    position: relative;
}

.country-select-trigger {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.country-select-trigger:focus {
    outline: none;
    border-color: var(--primary);
}

.country-select-value {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.country-select-value span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-flag,
.country-option-flag {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

.country-select-arrow {
    flex-shrink: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.country-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.country-search-input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
    background: #fff;
}

.country-search-input:focus {
    outline: none;
}

.country-options {
    max-height: 260px;
    overflow-y: auto;
}

.country-option {
    width: 100%;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(222, 214, 207, 0.45);
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: 0.98rem;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: #faf6f1;
}

.country-option[aria-selected="true"] {
    background: #f6eee3;
}

.country-option-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-option-dial {
    color: var(--muted);
    font-weight: 700;
    margin-left: 8px;
}

.country-select.open .country-select-trigger {
    border-color: var(--primary);
}

/* DOMOV - HERO DOPLNKY */
.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* DOMOV - ÚVOD */
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.intro-card p + p {
    margin-top: 14px;
}

.info-panel h3 {
    color: var(--dark);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-item {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fcfaf7;
}

.info-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-item span {
    color: var(--muted);
    font-size: 0.96rem;
}

/* DOMOV - NADPIS SEKCIE */
.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.section-heading h2 {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 10px;
}

.section-heading p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

/* DOMOV - FEATURE IKONY */
.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

/* DOMOV - HIGHLIGHT */
.home-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.home-highlight-content {
    background: linear-gradient(135deg, #5c2b20, #7b4231);
    color: var(--white);
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.highlight-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-highlight-content h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 14px;
    line-height: 1.15;
}

.home-highlight-content p {
    color: rgba(255, 255, 255, 0.92);
}

.highlight-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-box {
    background: var(--card);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 10px;
}

.stat-box span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
    background: var(--dark);
    color: var(--white);
    margin-top: 60px;
    padding-top: 42px;
}

.site-footer h3 {
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 38px;
}

.content-text p + p {
    margin-top: 16px;
}

.footer-bottom {
    margin-top: 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .reservation-layout-floor {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .intro-grid,
    .home-highlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .features,
    .menu-grid,
    .contact-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 8px 0 16px;
        gap: 10px;
    }

    .main-nav a {
        width: 100%;
        padding: 10px 0;
        border-bottom: none;
    }

    .main-nav.show {
        display: flex;
    }

    .topbar {
        flex-wrap: wrap;
        padding: 14px 0;
        min-height: auto;
    }

    .brand {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 72px 0;
    }

    .thesis-banner {
        font-size: 0.84rem;
        padding: 8px 10px;
    }

    .reservation-card .reservation-form .form-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-map-scroll {
        max-height: 440px;
        border-radius: 20px;
    }

    .restaurant-map {
        width: 760px;
        min-width: 760px;
        height: 540px;
    }

    .table-2 {
        width: 92px;
        height: 70px;
    }

    .table-4 {
        width: 122px;
        height: 78px;
    }

    .table-6 {
        width: 152px;
        height: 86px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 34px;
    }

    .footer-logo img {
        height: 34px;
    }

    .floor-card,
    .reservation-card,
    .card {
        padding: 24px;
    }

    .reservation-card h2,
    .floor-card h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 48px 0;
    }
}

@media (max-width: 700px) {
    .home-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .highlight-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .highlight-actions .btn {
        width: 100%;
        text-align: center;
    }

    .menu-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .page-hero {
        min-height: 180px;
        padding: 48px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .small-hero {
        min-height: 180px;
    }

    .floor-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .restaurant-map-scroll {
        max-height: 380px;
        overflow-x: auto;
        overflow-y: auto;
    }

    .restaurant-map {
        width: 640px;
        min-width: 640px;
        height: 500px;
        background-size: 20px 20px;
    }

    .restaurant-map::before {
        top: 18px;
        left: 18px;
        right: 18px;
        height: 52px;
    }

    .restaurant-map::after {
        width: 140px;
        height: 70px;
        bottom: 18px;
        right: 18px;
    }

    .bar-label {
        top: 34px;
        left: 32px;
    }

    .entrance-label {
        bottom: 42px;
        right: 40px;
    }

    .country-option {
        grid-template-columns: 24px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .country-select-trigger {
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    .thesis-banner {
        font-size: 0.72rem;
        line-height: 1.35;
        padding: 6px 10px;
    }

    .topbar {
        padding: 12px 0;
    }

    .brand {
        font-size: 1.25rem;
        gap: 8px;
    }

    .logo {
        height: 28px;
    }

    .nav-toggle {
        font-size: 1.55rem;
    }

    .card,
    .floor-card,
    .reservation-card {
        padding: 18px;
        border-radius: 18px;
    }

    .floor-card h2,
    .reservation-card h2 {
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .floor-header p,
    .map-hint,
    .legend-item {
        font-size: 0.92rem;
    }

    .selected-table-panel {
        padding: 14px 16px;
    }

    .restaurant-map-scroll {
        max-height: 320px;
        border-radius: 16px;
    }

    .restaurant-map {
        width: 560px;
        min-width: 560px;
        height: 430px;
        border-radius: 20px;
        background-size: 18px 18px;
    }

    .restaurant-map::before {
        top: 14px;
        left: 14px;
        right: 14px;
        height: 44px;
        border-radius: 14px;
    }

    .restaurant-map::after {
        width: 110px;
        height: 56px;
        bottom: 14px;
        right: 14px;
        border-radius: 12px;
    }

    .bar-label {
        top: 26px;
        left: 24px;
        font-size: 0.9rem;
    }

    .entrance-label {
        bottom: 30px;
        right: 28px;
        font-size: 0.82rem;
    }

    .table-2 {
        width: 78px;
        height: 58px;
        border-radius: 14px;
    }

    .table-4 {
        width: 102px;
        height: 68px;
        border-radius: 14px;
    }

    .table-6 {
        width: 126px;
        height: 76px;
        border-radius: 14px;
    }

    .table-2 span,
    .table-4 span,
    .table-6 span {
        font-size: 1.05rem;
    }

    .table-2 small,
    .table-4 small,
    .table-6 small {
        font-size: 0.72rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .country-select-trigger {
        font-size: 16px;
    }
}