:root {
    --app-bg: #09090b;
    /* Zinc 950 */
    --panel-bg: #18181b;
    /* Zinc 900 */
    --border-color: #27272a;
    /* Zinc 800 */
    --text-main: #fafafa;
    --text-muted: #a1a1aa;

    /* Piano sizing variables */
    --key-width: 56px;
    --key-height: calc(var(--key-width) * 240 / 56);
    --black-key-width: calc(var(--key-width) * 34 / 56);
    --black-key-height: calc(var(--key-width) * 150 / 56);
    --black-key-margin: calc(var(--black-key-width) / -2);
}

/* Lock scroll state */
.piano-wrapper.locked {
    overflow-x: hidden !important;
    touch-action: none;
}

/* 
   FORCE LANDSCAPE HACK 
   CSS configuration to rotate the app horizontally when the user holds the phone vertically.
*/
html,
body {
    margin: 0;
    padding: 0;
    width: 100dvw;
    height: 100dvh;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed; /* Chống kéo giật trang đàn hồi (rubber-banding) trên iOS */
    background-color: var(--app-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: none; /* Ngăn chặn cuộn trang bằng cử chỉ vuốt */
}

#app-container {
    width: 100dvw;
    height: 100dvh;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    touch-action: none;
}

/* Mobile Portrait Mode - Rotate 90 degrees & Optimize UI sizes */
@media screen and (orientation: portrait) {
    :root {
        --key-width: 48px; /* Gỡ bỏ !important để thanh trượt Zoom hoạt động */
        --key-height: 100%;
        --black-key-height: 60%;
    }

    #app-container {
        /* Rotate 90 degrees, swap Width and Height */
        width: 100dvh;
        height: 100dvw;
        width: 100vh; /* Fallback */
        height: 100vw; /* Fallback */
        transform: rotate(90deg);
        transform-origin: left top;
        /* Translate position back after rotation */
        top: 0;
        left: 100%;
    }

    /* Completely hide the empty main workspace to give 100% space to the piano */
    main {
        display: none !important;
    }

    /* Make footer expand to fill the remaining screen space */
    footer {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 0 !important; /* Force correct flexbox layout calculation */
    }

    /* 1. Header optimization with Safe Area insets */
    .app-header {
        height: calc(3.25rem + env(safe-area-inset-right)) !important;
        padding-top: calc(0.25rem + env(safe-area-inset-right)) !important; /* Shift away from physical right edge/notch */
        padding-left: calc(1rem + env(safe-area-inset-top)) !important;     /* Shift away from physical top status bar */
        padding-right: calc(1rem + env(safe-area-inset-bottom)) !important; /* Shift away from physical bottom navigation bar */
    }
    .app-header h1 {
        font-size: 0.95rem !important;
    }
    .app-header .w-8.h-8 {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }
    .app-header .gap-6 {
        gap: 0.5rem !important;
    }
    .app-header #sustain-btn {
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
        padding-top: 0.2rem !important;
        padding-bottom: 0.2rem !important;
        font-size: 10px !important;
    }

    /* 2. Piano Control Panel optimization */
    .piano-control-panel {
        flex-wrap: nowrap !important;
        padding-left: calc(1rem + env(safe-area-inset-top)) !important;
        padding-right: calc(1rem + env(safe-area-inset-bottom)) !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
        gap: 1rem !important;
    }
    .piano-control-panel > div.flex-wrap {
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        min-width: unset !important;
    }
    .piano-control-panel #lock-btn,
    .piano-control-panel #restore-btn {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        font-size: 10px !important;
    }
    .piano-control-panel svg {
        width: 12px !important;
        height: 12px !important;
    }

    /* 3. Piano Wrapper & Container optimization with Safe Area insets */
    .piano-wrapper {
        flex: 1 !important;
        padding-top: 8px !important;
        padding-bottom: calc(4px + env(safe-area-inset-left)) !important;   /* Shift away from physical left edge */
        padding-left: calc(10px + env(safe-area-inset-top)) !important;     /* Shift away from physical top status bar */
        padding-right: calc(10px + env(safe-area-inset-bottom)) !important; /* Shift away from physical bottom navigation bar */
        display: flex !important;
        flex-direction: column !important;
        overflow-y: hidden !important;
    }

    .piano {
        height: 100% !important;
        width: max-content !important;
    }
}

/* Safe Area Spacing for native landscape orientation on mobile */
@media screen and (orientation: landscape) {
    .app-header {
        padding-left: calc(1.5rem + env(safe-area-inset-left)) !important;
        padding-right: calc(1.5rem + env(safe-area-inset-right)) !important;
    }
    .piano-control-panel {
        padding-left: calc(1.5rem + env(safe-area-inset-left)) !important;
        padding-right: calc(1.5rem + env(safe-area-inset-right)) !important;
    }
    .piano-wrapper {
        padding-left: calc(16px + env(safe-area-inset-left)) !important;
        padding-right: calc(16px + env(safe-area-inset-right)) !important;
        padding-bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    }
}

/* Mobile Physical Landscape Mode (Height <= 550px) - Tối ưu diện tích cho phím đàn, tránh cuộn trang */
@media screen and (orientation: landscape) and (max-height: 550px) {
    :root {
        --key-height: 100%;
        --black-key-height: 60%;
    }

    main {
        display: none !important; /* Ẩn phần main trống để tiết kiệm không gian */
    }

    footer {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 0 !important;
    }

    .app-header {
        height: 3rem !important; /* Thu nhỏ header xuống 48px */
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        padding-left: calc(1rem + env(safe-area-inset-left)) !important;
        padding-right: calc(1rem + env(safe-area-inset-right)) !important;
    }

    .app-header h1 {
        font-size: 0.95rem !important;
    }

    .app-header .w-8.h-8 {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }

    .piano-control-panel {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        padding-left: calc(1rem + env(safe-area-inset-left)) !important;
        padding-right: calc(1rem + env(safe-area-inset-right)) !important;
    }

    .piano-wrapper {
        flex: 1 !important;
        padding-top: 8px !important;
        padding-bottom: calc(4px + env(safe-area-inset-bottom)) !important;
        padding-left: calc(10px + env(safe-area-inset-left)) !important;
        padding-right: calc(10px + env(safe-area-inset-right)) !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: hidden !important;
    }

    .piano {
        height: 100% !important;
    }
}

/* Hide scrollbars for app-like interface */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Customize horizontal scrollbar of the Piano */
.piano-wrapper::-webkit-scrollbar {
    display: block;
    height: 4px;
}

.piano-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.piano-wrapper::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
}

.piano-wrapper {
    position: relative;
    padding-top: 12px;
    background: #111;
    border-top: 1px solid #333;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 16px 16px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: flex-start;
    touch-action: pan-x; /* Cho phép cuộn phím ngang bằng cảm ứng nhưng chặn cuộn dọc trang */
}

.piano {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    padding-bottom: 5px;
    touch-action: none;
}

.key {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.05s ease, box-shadow 0.05s ease, background 0.1s ease;
    transform-origin: top center;
}

/* White keys */
.white-key {
    width: var(--key-width);
    height: var(--key-height);
    background: #ffffff;
    z-index: 1;
    border: 1px solid #e4e4e7;
    border-bottom: 4px solid #d4d4d8;
    border-radius: 0 0 6px 6px;
    box-shadow:
        -1px 0 0px rgba(255, 255, 255, 0.8),
        1px 0 0px rgba(255, 255, 255, 0.8),
        0 4px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
}

.white-key.active {
    background: #f4f4f5;
    border-bottom: 2px solid #d4d4d8;
    transform: rotateX(1deg) translateY(2px);
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Black keys */
.black-key {
    width: var(--black-key-width);
    height: var(--black-key-height);
    background: linear-gradient(to bottom, #27272a 0%, #09090b 100%);
    z-index: 2;
    margin-left: var(--black-key-margin);
    margin-right: var(--black-key-margin);
    border-radius: 0 0 4px 4px;
    box-shadow:
        inset 1px 0px 2px rgba(255, 255, 255, 0.1),
        inset -1px 0px 2px rgba(255, 255, 255, 0.1),
        -2px 0px 4px rgba(0, 0, 0, 0.4),
        2px 0px 4px rgba(0, 0, 0, 0.4),
        0 6px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
}

.black-key.active {
    background: linear-gradient(to bottom, #18181b 0%, #000000 100%);
    transform: rotateX(1.5deg) translateY(2px);
    box-shadow:
        inset 0px -1px 1px rgba(255, 255, 255, 0.05),
        0 2px 3px rgba(0, 0, 0, 0.8);
}

/* Labels on keys */
.key-label {
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.solfege-text {
    display: block;
    font-size: clamp(8px, calc(var(--key-width) * 11 / 56), 14px);
    font-weight: 600;
    color: #a1a1aa;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.pc-key-text {
    display: block;
    font-size: clamp(6px, calc(var(--key-width) * 8 / 56), 11px);
    font-weight: 500;
    color: #71717a;
    letter-spacing: 1px;
}

.black-key .pc-key-text {
    color: #52525b;
    font-size: clamp(6px, calc(var(--key-width) * 9 / 56), 12px);
    margin-bottom: 6px;
}

.active .solfege-text {
    color: #09090b;
    /* Dark color when pressed (white keys) */
}

.active .pc-key-text {
    color: #3f3f46;
}

.black-key.active .pc-key-text {
    color: #fafafa;
    /* Light color when pressed (black keys) */
}

/* Hide Labels Mode */
.hide-labels .key-label {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.key-label {
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Note Name Text (Hidden by default, shown in Notes mode) */
.note-name-text {
    display: none;
    font-size: clamp(8px, calc(var(--key-width) * 11 / 56), 14px);
    font-weight: 600;
    color: #a1a1aa;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.active .note-name-text {
    color: #09090b;
}

.black-key .note-name-text {
    display: none;
    font-size: clamp(7px, calc(var(--key-width) * 10 / 56), 12px);
    color: #52525b;
    margin-bottom: 6px;
}

.black-key.active .note-name-text {
    color: #fafafa;
}

/* Show Notes Mode */
.show-notes .solfege-text {
    display: none !important;
}
.show-notes .note-name-text {
    display: block !important;
}

/* Custom Range Input (Slider) */
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #fafafa;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #3f3f46;
    border-radius: 2px;
}

/* Range Slider Disabled state */
input[type=range]:disabled::-webkit-slider-thumb {
    background: #52525b;
    cursor: not-allowed;
}
input[type=range]:disabled::-webkit-slider-runnable-track {
    background: #27272a;
    cursor: not-allowed;
}

/* Flying notes (Monochrome) */
.flying-note {
    position: absolute;
    font-size: 24px;
    color: #fafafa;
    pointer-events: none;
    animation: floatUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    z-index: 10;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120px) scale(1.2);
        opacity: 0;
    }
}

/* Customize Instrument Buttons */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.inst-btn {
    padding: 10px 20px;
    border-radius: 9999px;
    color: #a1a1aa;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 120px;
    border: 1px solid transparent;
}

.inst-btn.active {
    background: #fafafa;
    color: #09090b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.inst-btn.active span:last-child {
    color: #52525b;
}

.inst-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
}

/* Loading Screen */
#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    opacity: 0;
    visibility: hidden;
}

#loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-left-color: #fafafa;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    animation: spin 0.8s linear infinite;
}

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

/* Micro-animations for Recording */
@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 8px 2px rgba(239, 68, 68, 0.4);
    }
}
.recording-active #record-dot {
    animation: pulse-red 1.2s infinite;
}

/* ==========================================================================
   Instrument-specific Active Key Glow Effects (Premium Themes)
   ========================================================================== */

/* 1. Grand Piano - Classic Gold Theme */
.theme-grandPiano .white-key.active {
    background: #fffbeb !important;
    border-bottom-color: #f59e0b !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 12px rgba(245, 158, 11, 0.5) !important;
}
.theme-grandPiano .black-key.active {
    background: linear-gradient(to bottom, #2d220c 0%, #09090b 100%) !important;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 0 15px rgba(245, 158, 11, 0.7) !important;
}

/* 2. E-Piano - Vintage Cyan Theme */
.theme-epiano .white-key.active {
    background: #ecfeff !important;
    border-bottom-color: #06b6d4 !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 12px rgba(6, 182, 212, 0.5) !important;
}
.theme-epiano .black-key.active {
    background: linear-gradient(to bottom, #082f49 0%, #09090b 100%) !important;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 0 15px rgba(6, 182, 212, 0.7) !important;
}

/* 3. Pipe Organ - Royal Crimson Theme */
.theme-organ .white-key.active {
    background: #fff5f5 !important;
    border-bottom-color: #ef4444 !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 12px rgba(239, 68, 68, 0.5) !important;
}
.theme-organ .black-key.active {
    background: linear-gradient(to bottom, #450a0a 0%, #09090b 100%) !important;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 0 15px rgba(239, 68, 68, 0.7) !important;
}

/* 4. Retro Synth - Cyberpunk Purple Theme */
.theme-synth .white-key.active {
    background: #fae8ff !important;
    border-bottom-color: #d946ef !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 12px rgba(217, 70, 239, 0.5) !important;
}
.theme-synth .black-key.active {
    background: linear-gradient(to bottom, #4a044e 0%, #09090b 100%) !important;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 0 15px rgba(217, 70, 239, 0.7) !important;
}

/* 5. Strings - Warm Amber Theme */
.theme-strings .white-key.active {
    background: #fff7ed !important;
    border-bottom-color: #f97316 !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 12px rgba(249, 115, 22, 0.5) !important;
}
.theme-strings .black-key.active {
    background: linear-gradient(to bottom, #431407 0%, #09090b 100%) !important;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05), 0 0 15px rgba(249, 115, 22, 0.7) !important;
}

/* Custom UI elements for Mobile Select and Fullscreen */
#inst-select-mobile {
    display: none;
}

.block.md\:hidden {
    display: none;
}

#fullscreen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background-color: #18181b;
    border: 1px solid #27272a;
    color: #a1a1aa;
    transition: all 0.2s ease;
    cursor: pointer;
}

#fullscreen-btn:hover {
    border-color: #3f3f46;
    color: #ffffff;
    background-color: #27272a;
}

@media screen and (orientation: portrait) {
    .block.md\:hidden {
        display: block !important;
    }
    
    #inst-select-mobile {
        display: block !important;
        background-color: #18181b;
        border: 1px solid #27272a;
        color: #d4d4d8;
        font-size: 11px;
        font-weight: 600;
        border-radius: 9999px;
        padding: 4px 28px 4px 10px;
        outline: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    #inst-select-mobile:hover {
        border-color: #3f3f46;
        color: #ffffff;
    }
}

/* ================= STANDARDIZED SPAC2 BRAND HEADER ================= */
.btn-back {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex-shrink: 0;
    font-size: 18px;
    padding: 0;
    box-sizing: border-box;
}

.btn-back i,
.btn-back svg {
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
    transform: translateX(-2px);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-back:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.85;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
}

.brand-link:hover {
    opacity: 0.92;
}

.brand-logo-card {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    padding: 3.5px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.brand-link:hover .brand-logo-card {
    transform: scale(1.04);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.brand-text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    white-space: nowrap;
}

.brand-name {
    font-weight: 800;
    font-size: 19px;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1;
}

.brand-divider {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.7;
    user-select: none;
}

.brand-app {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: -0.01em;
    line-height: 1;
}

@media (max-width: 640px), screen and (orientation: portrait) {
    .btn-back {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 16px;
    }

    .brand-logo-card {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        padding: 3px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-divider {
        font-size: 13px;
    }

    .brand-app {
        font-size: 13px;
    }
}

/* ================= RECORDING STUDIO ENHANCEMENTS ================= */
@keyframes recordPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
        transform: scale(1.02);
    }
}

@keyframes recordingDotBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.85);
    }
}

.record-pill-recording {
    border-color: rgba(239, 68, 68, 0.7) !important;
    background-color: rgba(69, 10, 10, 0.5) !important;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.35) !important;
}

.record-btn-recording {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    animation: recordPulse 1.6s infinite ease-in-out;
}

.record-btn-recording #record-dot {
    background-color: #ffffff !important;
    border-radius: 2px !important;
    width: 8px !important;
    height: 8px !important;
}

.record-pill-playing {
    border-color: rgba(6, 182, 212, 0.7) !important;
    background-color: rgba(8, 47, 73, 0.5) !important;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.35) !important;
}

.play-btn-active {
    background-color: #06b6d4 !important;
    color: #09090b !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}
