/* VARIABES & SETUP */
:root {
    --color-bg: #0a1018;
    /* Deep dark blue */
    --color-surface: #131c2a;
    --color-surface-hover: #1e2a3b;
    --color-primary: #cba052;
    /* Calcio Gold */
    --color-primary-hover: #e0b05a;
    /* --- THEME VARIABLES (Default: Serie A) --- */
    --theme-color-primary: #d4af37;
    /* Gold */
    --theme-color-secondary: #000000;
    --theme-color-accent: #d4af37;

    --theme-font-serif: 'Playfair Display', serif;
    --theme-font-sans: 'Inter', sans-serif;

    /* Base Colors */
    --color-bg-dark: #111;
    --color-bg-card: #1a1a1a;
    --color-text-main: #fff;
    --color-text-sub: #aaa;
    --color-text-accent: var(--theme-color-accent);

    /* UI Colors */
    --color-btn-primary-bg: var(--theme-color-primary);
    --color-btn-primary-text: #000;

    --font-serif: var(--theme-font-serif);
    --font-sans: var(--theme-font-sans);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;

    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* BACKGROUND EFFECT */
/* BACKGROUND EFFECT */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use dynamic RGB variable with fallback to gold */
    background: radial-gradient(circle at top right, rgba(var(--theme-color-rgb, 212, 175, 55), 0.35), transparent 60%),
        radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.5), transparent 50%);
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Back Button Specific Style */
#intro-back-btn,
#portal-back-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    color: #fff;
    backdrop-filter: blur(5px);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#intro-back-btn:hover,
#portal-back-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: translateX(-3px);
}

/* LAYOUT UTILS */
.content-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.screen {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    /* hidden by default */
}

.screen.active {
    opacity: 1;
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

.hidden {
    display: none !important;
}

/* TYPOGRAPHY */
h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-text-sub);
    margin-bottom: var(--spacing-lg);
}

.highlight {
    color: var(--color-primary);
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px currentColor;
}

/* BUTTONS */
button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(203, 160, 82, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 160, 82, 0.4);
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-text-main);
    border: 1px solid var(--color-text-sub);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    margin-right: 10px;
}

.btn-secondary:hover {
    background-color: var(--color-surface-hover);
    border-color: var(--color-primary);
}

.btn-text {
    background: none;
    color: var(--color-text-sub);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--color-text-main);
}

/* INTRO SCREEN */
#intro-screen .logo-area {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.floating-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.concept-text {
    text-align: center;
    color: var(--color-text-sub);
    margin-bottom: 3rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.action-area {
    text-align: center;
    margin-top: auto;
    margin-bottom: 2rem;
}

.small-note {
    font-size: 0.8rem;
    color: var(--color-text-sub);
    margin-top: 1rem;
}

/* QUIZ SCREEN */
.quiz-header {
    margin-bottom: var(--spacing-md);
}

.progress-container {
    width: 100%;
    height: 6px;
    /* Slightly thicker */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px var(--color-primary);
    /* Glow effect */
}

.question-count {
    color: var(--color-text-sub);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.question-card {
    margin-bottom: 2.5rem;
    padding: 0 var(--spacing-sm);
}

#question-text {
    font-size: 1.5rem;
    /* Balanced size */
    font-weight: 700;
    /* Bold */
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    /* Strong shadow for readability */
}

/* OPTIONS GRID */
.options-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.btn-option {
    /* Unified class name from JS */
    background-color: rgba(255, 255, 255, 0.08);
    /* Semi-transparent */
    backdrop-filter: blur(5px);
    color: var(--color-text-main);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    /* Bolder text */
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Visible border */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    line-height: 1.4;
}

.btn-option:hover {
    background-color: var(--color-primary);
    color: #000;
    /* Black text on hover */
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

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

/* RATING SCALE (Horizontal) */
.rating-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1rem;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.rating-scale {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.scale-btn {
    flex: 1;
    aspect-ratio: 1;
    /* Make them square/circle */
    max-width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    /* Circle */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scale-btn:hover {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 0 15px var(--color-primary);
    border-color: var(--color-primary);
}

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

/* LOADING SCREEN */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(203, 160, 82, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 2rem;
}

.loading-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.loading-sub {
    color: var(--color-text-sub);
}

/* RESULTS SCREEN */
#result-screen .content-container {
    padding-top: var(--spacing-sm);
}

.result-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-sub);
}

.result-card {
    background: linear-gradient(145deg, var(--color-surface) 0%, #1a2533 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.result-card.main {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--color-primary);
}

.badge-best {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.club-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.club-description {
    font-size: 1.1rem;
    color: #fff;
    /* stand out */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.club-intro {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-text-sub);
    position: relative;
    padding-left: 2.5rem;
}

.club-intro .fa-quote-left {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--color-primary);
    opacity: 0.5;
}

/* RECOMMENDATION BOX */
.recommendation-box {
    background-color: rgba(46, 125, 50, 0.1);
    /* Subtle green tint */
    border-left: 3px solid var(--color-accent-green);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.recommendation-box h3 {
    color: #81c784;
    /* Light green */
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- LEAGUE SELECTOR SCREEN (SPLIT LAYOUT) --- */
.split-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

/* TOP HALF: CARDS */
.selector-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Stack Title and Grid */
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem;
    /* overflow: hidden; Removed to prevent clipping */
    gap: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.league-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    flex-wrap: nowrap;
    /* Do not stack unless extreme mobile */
    overflow-x: auto;
    /* Safety scroll */
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .league-grid {
        gap: 0.8rem;
        flex-wrap: wrap;
        /* Allowed to wrap on very small screens if needed, or keep nowrap */
    }

    .league-card {
        min-width: 90px;
        padding: 1rem;
    }
}

.league-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    height: auto;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.league-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-text-main);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--theme-color-primary);
}

.league-card:active {
    transform: scale(0.95);
}

.league-card img,
.league-card i {
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.league-card:hover i {
    transform: scale(1.1);
}

.league-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.league-card small {
    color: var(--color-text-sub);
    font-size: 0.8rem;
}

/* BOTTOM HALF: INFO */
.selector-bottom {
    flex: 1;
    background: var(--color-bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-content {
    max-width: 600px;
    padding-bottom: 3rem;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    color: var(--theme-color-primary);
    opacity: 0.8;
}

.logo-header i {
    font-size: 1.5rem;
}

.logo-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.selector-bottom h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: var(--font-serif);
}

.app-description {
    color: var(--color-text-sub);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.instruction-text {
    font-size: 0.9rem;
    color: var(--theme-color-primary);
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.promotion-area {
    margin-top: 3rem;
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.promo-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.decoration-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    flex: 1;
    max-width: 100px;
}

.promo-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.promo-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--color-surface);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-main);
    transition: all 0.2s;
}

.promo-card:hover {
    background-color: var(--color-surface-hover);
}

.promo-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.promo-card div {
    display: flex;
    flex-direction: column;
}

.promo-card strong {
    font-size: 0.9rem;
}

.promo-card span {
    font-size: 0.7rem;
    color: var(--color-text-sub);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   ANSWER LIST MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.8);
    /* Fallback */
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.flex {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--color-surface);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--color-text-sub);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.close-btn:hover {
    color: #fff;
}

.answer-list {
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.answer-q-num {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.answer-q-text {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #ddd;
}

.answer-a-text {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Scrollbar for modal */
.answer-list::-webkit-scrollbar {
    width: 6px;
}

.answer-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.answer-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}



transform: translateY(0px);
}
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* DATA SUBMISSION BOX */
.data-submission-box input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.data-submission-box button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* NAV BUTTONS */
.quiz-nav {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
}

.nav-text-btn {
    background: none;
    border: none;
    color: var(--color-text-sub);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
    padding: 0.5rem;
}

.nav-text-btn:hover {
    color: var(--color-primary);
}

.nav-text-btn.hidden {
    visibility: hidden;
    /* Use visibility to keep layout space if needed, or display none. Here display none is better for layout */
    display: none;
}

/* Watermark inside card */
.watermark {
    margin-top: 1.5rem;
    text-align: right;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-primary);
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

/* SHARE BUTTON */
#share-btn,
#save-img-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

#share-btn:hover,
#save-img-btn:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

#save-img-btn {
    background-color: #333;
    /* Slightly lighter for distinction, or Keep black */
    background: linear-gradient(135deg, #333, #111);
}

/* FOOTER */
.app-footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    color: var(--color-text-sub);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .promo-links {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    #share-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .btn-secondary {
        width: 100%;
        margin-right: 0;
    }
}