/*
 * TrevorSphere Radio Player
 * Version: 5.0.4
 * Author: Trevor Roberts
 * Website: https://trevorsphere.com/
 * Copyright © Trevor Roberts 2026. All rights reserved.
 */

/* 
  Name: Radio Yada Custom Player Styles
  Version: 5.0.4
*/

:root {
    color-scheme: dark;
    --card-bg: rgba(18, 24, 38, 0.85);
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --live-color: #ef4444;
    --live-accent: #a3e635;
    --wave-aqua: #22d3ee;
    --wave-pink: #f472b6;
    --live-accent-idle: rgba(163, 230, 53, 0.35);
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --station-date-font-size: clamp(0.8rem, 1.25vw, 1.1rem);
    --station-time-font-size: clamp(0.95rem, 1.55vw, 1.1rem);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--radio-desktop-background, url('background-with-logo.jpg')) no-repeat top left fixed;
    background-size: cover;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 600px) {
    :root {
        --station-date-font-size: clamp(0.75rem, 3.2vw, 0.85rem);
        --station-time-font-size: var(--station-date-font-size);
    }
}

/* Keep the logo visible in the top-left on narrow screens and use the mobile wallpaper. */
@media (max-width: 767px) {
    body,
    html {
        background-image: var(--radio-mobile-background, url('background-mobile-with-logo.jpg'));
        background-position: top left;
        background-attachment: scroll;
    }
}

.player-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    /* Mobile default: full width minus a 20px margin either side. */
    width: calc(100vw - 14px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 1. TOP ROW: DJ Info (Round Avatar + Name + On Air Badge) */
.presenter-row {
    display: none; /* Hidden by default; JS adds .is-live to reveal */
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 10px 8px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.presenter-row.is-live {
    display: flex;
    animation: fade-in-down 0.35s ease-out;
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.presenter-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.presenter-avatar {
    display: block;
    box-sizing: border-box;
    width: 52px;
    height: 52px;
    aspect-ratio: 1 / 1;
    flex: 0 0 52px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    background: #1e293b;
    border: 2px solid var(--live-accent);
}

.presenter-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--live-color);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-left: 10px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.on-air-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

/* 2. MIDDLE SECTION: Song Info (Album Art, Artist, Track, Visualizer) */
.song-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.art-container {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    background: #1e293b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

.art-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    min-width: 0;
    flex: 1;
    text-align: left;
}

.now-playing-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--live-accent);
    margin-bottom: 4px;
}

h1 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-weight: 700;
    line-height: 1.25;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.artist {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

canvas {
    width: 100%;
    height: 28px;
    display: block;
}

.station-clock {
	border-top: 1px solid #232836;
    margin-top: -10px;
    margin-bottom: -10px;
	padding-top: 10px;
    color: #cbd5e1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.35;
}

.station-date {
    font-size: var(--station-date-font-size);
    font-weight: 600;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.station-time {
    font-size: var(--station-time-font-size);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.025em;
    white-space: nowrap;
    direction: ltr;
    unicode-bidi: isolate;
}

html[dir="rtl"] .track-info {
    text-align: right;
}

html[dir="rtl"] .on-air-badge {
    margin-left: 0;
    margin-right: 10px;
}

html[dir="rtl"] .language-option.is-active .lang-name::after {
    margin-left: 0;
    margin-right: 6px;
}

/* Language selector — sits between the date and time in .station-clock */
.language-selector {
    position: relative;
    flex-shrink: 0;
    align-self: center;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.language-toggle .flag {
    width: 16px;
    height: 12px;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.language-toggle .lang-code {
    font-variant-numeric: tabular-nums;
}

.language-toggle .chevron {
    width: 11px;
    height: 11px;
    fill: currentColor;
    opacity: 0.7;
    transition: transform 0.15s ease;
}

.language-selector.is-open .chevron {
    transform: rotate(180deg);
}

/* Dropdown opens upward since the clock row sits at the bottom of the card */
.language-dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 6px;
    margin: 0;
    list-style: none;
    width: min(390px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: none;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    z-index: 20;
}

.language-dropdown[hidden] {
    display: none;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 9px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-color);
    white-space: nowrap;
}

.language-option:hover,
.language-option:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.language-option:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 1px;
}

.language-option .flag {
    width: 16px;
    height: 12px;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.language-option .lang-name {
    flex: 1;
}

.language-option .lang-code {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.language-option.is-active {
    background: rgba(59, 130, 246, 0.2);
}

.language-option.is-active .lang-name::after {
    content: "✓";
    margin-left: 6px;
    color: var(--accent-color);
    font-weight: 700;
}

/* 3. BOTTOM SECTION: Audio Controls */
.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.play-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.play-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

.play-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 0;
}

.volume-value {
    min-width: 3ch;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

input[type="range"] {
    flex: 1;
    accent-color: var(--accent-color);
    cursor: pointer;
    min-width: 50px;
}

.player-status {
	margin-top: -10px;
	margin-bottom: -10px;
    min-height: 1.2em;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 2;
    text-align: center;
}

.player-status[data-state="playing"] {
    color: var(--live-accent);
	/* color: var(--text-muted); */
}

.player-status[data-state="reconnecting"],
.player-status[data-state="buffering"],
.player-status[data-state="connecting"] {
    color: #facc15;
}

.player-status[data-state="offline"] {
    color: #fca5a5;
}

@media (min-width: 768px) {
    .player-card {
        width: min(85vw, 520px);
        padding: 28px;
        gap: 20px;
    }

    .presenter-row {
        padding: 10px 14px 10px 10px;
    }

    .presenter-avatar {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
        border-width: 2px;
    }

    .presenter-name {
        font-size: 1rem;
    }

    .on-air-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .song-section {
        gap: 20px;
    }

    .art-container {
        width: 128px;
        height: 128px;
        border-radius: 16px;
    }

    .now-playing-label {
        font-size: 0.78rem;
        margin-bottom: 6px;
    }

    h1 {
        font-size: 1.4rem;
    }

    .artist {
        font-size: 1.05rem;
    }

    canvas {
        height: 34px;
    }

    .play-btn {
        width: 54px;
        height: 54px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }

    .volume-container {
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .player-card {
        width: 720px;
        padding: 36px;
        gap: 24px;
    }

    .presenter-row {
        padding: 12px 18px 12px 12px;
    }

    .presenter-avatar {
        width: 64px;
        height: 64px;
        flex: 0 0 64px;
        border-width: 3px;
    }

    .presenter-name {
        font-size: 1.15rem;
    }

    .on-air-badge {
        font-size: 0.85rem;
        padding: 7px 14px;
        gap: 6px;
    }

    .song-section {
        gap: 28px;
    }

    .art-container {
        width: 128px;
        height: 128px;
        border-radius: 20px;
    }

    .now-playing-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .artist {
        font-size: 1.2rem;
    }

    canvas {
        height: 42px;
    }


    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn svg {
        width: 24px;
        height: 24px;
    }

    .volume-container {
        font-size: 0.9rem;
    }
}

/* 5. ADVERTISING SLIDER */
.player-page {
    width: 100%;
    min-height: 100%;
    padding: 20px 7px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/*
 * Canonical desktop advertising standard:
 * Slider: 720 × 180 px maximum
 * Artwork: 1440 × 360 px (4:1)
 */
.advertising-grid[hidden] {
    display: none !important;
}

.advertising-grid {
    position: relative;
    display: block;
    width: min(720px, 85vw);
    height: 180px;
    overflow: hidden;
}

.advertising-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.advertising-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.advertising-card:hover,
.advertising-card:focus-visible {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.advertising-card:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

.advertising-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
 * Canonical mobile advertising standard:
 * Slider: full width × 140 px
 * Artwork: 640 × 280 px
 */
@media (max-width: 767px) {
    .player-page {
        justify-content: flex-start;
        padding-top: 120px;
        padding-right: 5px;
        padding-bottom: 20px;
        padding-left: 5px;
    }

    .advertising-grid {
        width: 100%;
        height: 140px;
    }

    .advertising-card {
        height: 140px;
    }

    /* Tighten the live-presenter layout without hiding the wallpaper logo. */
    .player-page.presenter-is-live {
        gap: 8px;
    }

    .player-page.presenter-is-live .player-card {
        gap: 10px;
    }

    .player-page.presenter-is-live .player-status {
        margin-top: -12px;
        margin-bottom: -12px;
        line-height: 1.7;
    }

    .player-page.presenter-is-live .controls-row {
        padding-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 6. SCHEDULE BUTTON AND MODAL */
.schedule-button {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: var(--accent-color);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.schedule-button:hover,
.schedule-button:focus-visible {
    background: var(--accent-hover);
    border-color: rgba(255, 255, 255, 0.45);
}

.schedule-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.schedule-modal[hidden] {
    display: none;
}

.schedule-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.schedule-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.76);
    backdrop-filter: blur(6px);
}

.schedule-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 94vw);
    max-height: min(760px, 90vh);
    overflow: auto;
    box-sizing: border-box;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(15, 20, 32, 0.98);
    color: var(--text-color);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

.schedule-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.schedule-header h2 {
    margin: 0 0 4px;
    font-size: 1.4rem;
}

.schedule-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.schedule-close {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.schedule-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.schedule-tab,
.schedule-day-nav {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    cursor: pointer;
}

.schedule-tab {
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.schedule-tab.is-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.schedule-day-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.schedule-day-controls strong {
    text-align: center;
    font-size: 1rem;
}

.schedule-day-nav {
    width: 38px;
    height: 34px;
    border-radius: 10px;
    font-size: 1.4rem;
    line-height: 1;
}

.schedule-programme-list {
    display: grid;
    gap: 9px;
}

.schedule-programme {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.schedule-programme.is-current {
    border-color: var(--live-accent);
    background: rgba(163, 230, 53, 0.1);
}

.schedule-programme-time {
    color: var(--live-accent);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.schedule-programme-title {
    font-weight: 700;
}

.schedule-programme-presenter {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.schedule-current-label {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--live-accent);
    color: #101827;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    vertical-align: middle;
}

.schedule-empty {
    padding: 26px 18px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: var(--text-muted);
    text-align: center;
}

.schedule-week-view {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.schedule-week-view[hidden] {
    display: none;
}

.schedule-week-day {
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.schedule-week-day.is-today {
    border-color: var(--accent-color);
}

.schedule-week-day h3 {
    margin: 0 0 9px;
    font-size: 0.82rem;
    text-align: center;
}

.schedule-week-item {
    padding: 7px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-week-item:first-of-type {
    border-top: 0;
}

.schedule-week-time {
    display: block;
    color: var(--live-accent);
    font-size: 0.68rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.schedule-week-title {
    display: block;
    margin-top: 2px;
    font-size: 0.73rem;
    line-height: 1.25;
}

body.schedule-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .schedule-button {
        top: 60px;
        right: 10px;
        min-height: 38px;
        padding: 8px 11px;
        font-size: 0.78rem;
    }

    .schedule-modal {
        padding: 10px;
    }

    .schedule-dialog {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px 14px;
        border-radius: 16px;
    }

    .schedule-week-tab,
    .schedule-week-view {
        display: none !important;
    }

    .schedule-programme {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 10px;
        padding: 11px 10px;
    }
}

/* Version 4.10: the AzuraCast public API exposes one available schedule day at a time. */
.schedule-day-controls-static {
    justify-content: center;
}

@media (max-width: 430px) {
    .language-dropdown {
        width: calc(100vw - 16px);
    }

    .language-option {
        gap: 6px;
        padding: 7px 6px;
        font-size: 0.78rem;
    }

    .language-option .lang-code {
        font-size: 0.64rem;
    }
}


/* Accessibility: clear keyboard focus without changing mouse/touch appearance. */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 3px;
}

@media (forced-colors: active) {
    .player-card,
    .language-dropdown,
    .schedule-dialog,
    .advertising-card {
        border: 1px solid CanvasText;
    }

    .play-btn,
    .schedule-button,
    .schedule-close {
        forced-color-adjust: auto;
    }
}


/* 8. IFRAME EMBED MODE
 * The dedicated embed.php endpoint intentionally permits cross-origin framing.
 * Normal index.php pages remain protected against framing.
 */
html.radio-embed-root,
body.radio-embed {
    height: auto;
    min-height: 0;
    background: transparent;
}

body.radio-embed {
    overflow-x: hidden;
    overflow-y: auto;
}

body.radio-embed .player-page {
    min-height: 0;
    padding: 8px;
    justify-content: flex-start;
    gap: 8px;
}

body.radio-embed .player-card {
    width: min(100%, 720px);
}

body.radio-embed:not(.radio-embed-with-ads) .advertising-grid {
    display: none !important;
}

body.radio-embed .schedule-button {
    position: absolute;
    top: 12px;
    right: 12px;
}

@media (max-width: 767px) {
    body.radio-embed .player-page {
        padding: 8px;
    }
}
