@import url("https://queye.dev/fonts/master.css");

/* ===========================================================
   GLOBAL / RESETS
   Uses: var(--body-font), var(--heading-font)
   =========================================================== */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, var(--bg-accent-1, rgba(28, 28, 28, 0.08)), transparent 32%),
                radial-gradient(circle at 80% 0%, var(--bg-accent-2, rgba(49, 49, 49, 0.08)), transparent 26%),
                #101010;
    color: #fff;
    font-family: var(--body-font), sans-serif;
}

:root {
    --bg-accent-1: rgba(155, 75, 255, 0.08);
    --bg-accent-2: rgba(80, 140, 255, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

.ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #262626;
    background: #161616;
    color: #c8d1e0;
    font-size: 14px;
    transition: border-color .15s, background .15s, transform .12s;
}

.ghost-link:hover {
    border-color: #3a3a3a;
    background: #1c1c1c;
    transform: translateY(-1px);
}



/* ===========================================================
   APP LAYOUT
   =========================================================== */

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 1 auto;
    padding: 20px 28px 120px;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 8px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-hero h1 {
    margin: 6px 0;
    font-size: 28px;
    letter-spacing: 0.01em;
}

.page-hero .subhead {
    color: #b6c0d4;
    line-height: 1.45;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #1f1f1f;
    color: #c8d1e0;
    font-size: 13px;
    border: 1px solid #262626;
}

.card-panel {
    background: #181818;
    border: 1px solid #242424;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 16px 28px rgba(0,0,0,0.25);
}



/* ===========================================================
   HEADER
   =========================================================== */

.top-header {
    height: 64px;
    background: rgba(15, 15, 18, 0.9);
    border-bottom: 1px solid #1c1c1c;
    padding: 0 28px;
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 20;
}

.top-header .logo {
    font-family: var(--heading-font);
}

.top-header .logo a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
}

.top-nav {
    display: flex;
    gap: 12px;
}

.top-nav a {
    padding: 8px 14px;
    border-radius: 12px;
    color: #c8d1e0;
    font-size: 14px;
    transition: background .15s, color .15s, border-color .15s;
    border: 1px solid transparent;
}

.top-nav a:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #262626;
}



/* ===========================================================
   NOW PLAYING BAR (BOTTOM)
   =========================================================== */

.now-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;

    height: 76px;
    background: #0f0f12;
    border-top: 1px solid #1c1c1c;

    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 14px;

    cursor: pointer;
    z-index: 50;
}

.now-bar-cover {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.now-bar-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.now-bar-title {
    font-size: 15px;
    font-family: var(--heading-font);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.now-bar-artist {
    font-size: 13px;
    color: #b3b3b3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.now-bar-controls {
    display: flex;
    gap: 8px;
}

.now-bar-controls button,
.np-controls button {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid #2b2b2b;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%), #161616;
    color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .12s ease, transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.now-bar-controls button:hover,
.np-controls button:hover {
    background: #9b4bff;
    border-color: #9b4bff;
    color: #0d0d12;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 20px rgba(155, 75, 255, 0.25);
}

#player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: #0f0f12;
    border-top: 1px solid #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 90;
}

body {
    padding-bottom: 76px;
}

.mini-title {
    font-size: 15px;
    font-family: var(--body-font);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mini controls in footer */
.mini-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-controls button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #252525;
    background: linear-gradient(145deg, #1a1a1a, #121214);
    color: #f2f2f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: background .12s ease, border-color .12s ease, transform .12s ease, box-shadow .12s ease, color .12s ease;
}

.mini-controls button:hover {
    background: linear-gradient(145deg, #9b4bff, #7b2ff7);
    border-color: #9b4bff;
    color: #0d0d12;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 20px rgba(155, 75, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ===========================================================
   LIBRARY + ALBUM GRID
   =========================================================== */

.library-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.library-header h1 {
    font-family: var(--heading-font);
    font-size: 28px;
    margin: 0;
}

.album-grid {
    margin-top: 20px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.album-card {
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    display: block;
    transition: background .15s, transform .15s, border-color .15s;
    background: #181818;
    border: 1px solid #242424;
    box-shadow: 0 16px 28px rgba(0,0,0,0.25);
    overflow: hidden;
}

.album-card:hover {
    background: #1c1c1c;
    border-color: #9b4bff;
    transform: translateY(-3px);
}

.album-cover {
    width: 100%;
    padding-top: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.album-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity .15s;
}

.album-card:hover .album-cover::after {
    opacity: 1;
}

.album-meta {
    margin-top: 10px;
}

.album-title {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 800;
    color: #f5f7fb;
}

.album-artist {
    font-size: 13px;
    color: #9fb4d6;
}

.album-sub {
    font-size: 12px;
    color: #8fa3c3;
}



/* ===========================================================
   ALBUM DETAIL PAGE
   =========================================================== */

.album-view {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.album-shell {
    background: rgba(0,0,0,0.25);
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.album-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 4px 8px;
    margin-bottom: 6px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hero-cover-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.album-hero-cover {
    width: 108px;
    height: 108px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.album-header {
    display: flex;
    gap: 26px;
    background: #181818;
    border: 1px solid #242424;
    border-radius: 16px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 18px 32px rgba(0,0,0,0.32);
}

.album-cover-large {
    min-width: 108px;
    height: 108px;
    border-radius: 16px;
    background-size: cover;
    background-color: #333;
    box-shadow: 0 18px 32px rgba(0,0,0,0.35);
}

.album-info h1 {
    margin: 0;
    font-size: 32px;
    font-family: var(--heading-font);
}

.album-info h2 {
    margin: 4px 0 6px;
    font-size: 16px;
    font-weight: 500;
    color: #c8d1e0;
}

.album-info span {
    font-size: 14px;
    color: #9fb4d6;
}

.play-button {
    margin-top: 14px;
    padding: 10px 20px;
    background: #9b4bff;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--heading-font);
}



/* ===========================================================
   TRACK LIST
   =========================================================== */

.album-tracks {
    border-top: 1px solid #1f1f1f;
    background: #161616;
    border-radius: 10px;
    overflow: hidden;
}

.track-row {
    display: grid;
    grid-template-columns: 48px 1fr 60px;
    align-items: center;
    padding: 10px 6px;
    cursor: pointer;
    border-bottom: 1px solid #1f1f1f;
    transition: background .12s, border-color .12s;
    gap: 8px;
}

.track-row:hover {
    background: #1b1b1b;
    border-color: #9b4bff;
}

.track-number {
    font-size: 13px;
    color: #6f8ce6;
    text-align: right;
    font-weight: 700;
}

.track-title {
    font-size: 15px;
    font-weight: 600;
}

.track-duration {
    font-size: 13px;
    color: #9fb4d6;
    text-align: right;
}



/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width: 768px) {
    .now-inner {
        flex-direction: column;
    }

    .now-left {
        flex: none;
    }

    .now-right {
        flex: none;
        max-height: 40vh;
    }

    .now-fullscreen {
        height: 94vh;
    }
}

#now-overlay {
    position: fixed;
    inset: 0;
    background: #121212;
    display: none;
    z-index: 999;
    overflow-y: auto;
}

#now-overlay.active {
    display: block;
}

.now-fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.now-bg-solid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #121212;
    transition: background 0.4s ease;
}

.now-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.now-close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.now-close-btn:hover {
    background: rgba(0, 0, 0, 0.55);
}

.now-left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.now-cover {
    width: 320px;
    height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.now-track-block {
    width: 100%;
    text-align: left;
}

.now-track-block .np-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.now-track-block .np-artist {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 2px;
}

.now-track-block .np-album {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 16px;
}

.now-track-block .np-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.now-track-block .np-controls button {
    font-size: 20px;
}

.now-track-block .np-progress-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #aaa;
}

.np-bar {
    flex: 1;
    height: 6px;
    background: #2a2a2a;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
}

.np-bar-fill {
    height: 100%;
    background: #9B4BFF;
    width: 0%;
    border-radius: 999px;
}

.np-bar-handle {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
}

.np-bar-handle:hover {
    background: #9B4BFF;
}

.now-right {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-lyrics-header {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d0d6ff;
    margin-bottom: 12px;
}

.now-lyrics-body {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
}

.lyrics-line {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    padding: 4px 0;
    opacity: 0.55;
    transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.lyrics-line.active {
    color: #fff;
    font-weight: 600;
    transform: scale(1.03);
    opacity: 1;
    margin-left: 9px;
}




/* legacy duplicate import/definitions removed; footer styles defined above */

/* ===========================================================
   UPLOAD PAGE
   =========================================================== */

.upload-body {
    background: #121212;
    min-height: 100vh;
    color: #f5f7fb;
}

.upload-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 96px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.upload-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.upload-hero h1 {
    margin: 6px 0;
    font-size: 28px;
    letter-spacing: 0.01em;
}

.upload-hero .subhead {
    color: #b6c0d4;
    max-width: 620px;
    line-height: 1.5;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #9b4bff;
    margin: 0;
}

.upload-cta-links .ghost-link {
    color: #c8d1e0;
    border: 1px solid #262626;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    background: #181818;
}

.upload-cta-links .ghost-link:hover {
    border-color: #3a3a3a;
}

.upload-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 20px;
}

.upload-card,
.status-card {
    background: #181818;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.dropzone {
    position: relative;
    border: 1.5px dashed #2f2f2f;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 18px;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.1s, background 0.2s;
    background: #151515;
}

.dropzone:hover {
    border-color: #3d3d3d;
    background: #171717;
}

.dropzone.dragging {
    border-color: #9b4bff;
    background: #1c1424;
    transform: translateY(-1px);
}

.dropzone-illustration {
    font-size: 32px;
    background: #1f1f1f;
    color: #9b4bff;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}

.dropzone-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #e8eef9;
}

.dropzone-text span {
    color: #c8d1e0;
}

.dropzone-text small {
    color: #9fb4d6;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin: 14px 0 6px;
    color: #d9e3f2;
    min-height: 24px;
}

.file-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.file-pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    color: #f5f7fb;
}

.file-pills small {
    color: #8fa3c3;
}

.upload-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.submit-btn {
    background: #9b4bff;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.15s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(127,176,255,0.25);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hint {
    color: #9fb4d6;
    font-size: 13px;
}

.status-card h3 {
    margin: 0 0 6px;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-pill {
    background: #1f1f1f;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #c8d1e0;
}

.status-pill.success {
    background: rgba(46, 204, 113, 0.15);
    color: #6edc9c;
}

.status-pill.error {
    background: rgba(255, 99, 132, 0.15);
    color: #ff8ba3;
}

.progress {
    margin-top: 8px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #1a1a1a;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7fb0ff, #a78bfa);
    border-radius: inherit;
    transition: width 0.15s linear;
}

.progress-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8d1e0;
    font-size: 13px;
}

.results {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-success,
.result-error {
    padding: 10px 12px;
    border-radius: 10px;
    background: #181818;
    border: 1px solid #242424;
}

.result-success {
    border-color: rgba(46, 204, 113, 0.35);
}

.result-error {
    border-color: rgba(255, 99, 132, 0.35);
}

.result-title {
    font-weight: 600;
}

.file-info {
    color: #9fb4d6;
    font-size: 13px;
    margin-top: 4px;
}

.upload-tips {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.upload-tips h4 {
    margin: 0 0 6px;
}

.upload-tips ul {
    margin: 0;
    padding-left: 16px;
    color: #c8d1e0;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .upload-grid {
        grid-template-columns: 1fr;
    }

    .upload-hero {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .upload-page {
        padding: 32px 16px 72px;
    }

    .dropzone {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tabs above lyrics / queue */
.now-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.now-tab {
    background: none;
    border: none;
    padding: 0 0 4px;
    cursor: pointer;
    color: inherit;
    border-bottom: 2px solid transparent;
    font-family: var(--body-font);
}

.now-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Two animated panes in the same area (lyrics + queue) */
.now-lyrics-body {
    position: relative;
    height: 60vh;          /* give it an actual height */
    max-height: 60vh;
    overflow: hidden;      /* panes handle their own scroll */
}

/* shared pane base */
.now-pane {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding-right: 8px;

    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;

    transition:
        opacity 0.18s ease-out,
        transform 0.18s ease-out;
}

/* active pane (visible) */
.now-pane.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Queue entries: fixed-ish height, content at top */
.queue-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 40px;      /* ensures uniform row height */
    padding: 6px 0;
    font-size: 14px;
    color: #bbb;
    cursor: pointer;
}

.queue-item:hover {
    color: #fff;
}

.queue-title {
    font-weight: 500;
}

.queue-artist {
    font-size: 13px;
    color: #888;
}

/* current track in queue view */
.queue-item.active .queue-title {
    color: #1db954;
    font-weight: 600;
}

.track-row {
    display: grid;
    grid-template-columns: 32px 1fr 60px 32px; /* + menu column */
    align-items: center;
    padding: 10px 6px;
    cursor: pointer;
    border-bottom: 1px solid #1f1f1f;
    transition: background .12s, border-color .12s;
}

.track-menu-btn {
    border: none;
    background: transparent;
    color: #b3b3b3;
    font-size: 18px;
    cursor: pointer;
    justify-self: end;
    padding: 0;
}

.track-row:hover {
    background: #1b1b1b;
    border-color: #9b4bff;
}

.track-menu-btn:hover {
    color: #ffffff;
}

/* Context menu popup */
.track-context-menu {
    position: fixed;
    min-width: 180px;
    background: #181818;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    padding: 6px 0;
    z-index: 9999;
    display: none;
}

.track-context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.track-context-menu li {
    padding: 8px 12px;
    font-size: 14px;
    color: #e5e5e5;
    cursor: pointer;
    white-space: nowrap;
}

.track-context-menu li:hover {
    background: #282828;
}

.track-context-menu li.danger {
    color: #ff6b6b;
}

.track-context-menu li.danger:hover {
    background: #3a1f1f;
}

/* Simple “toast” message (optional) */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #282828;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.toast.show {
    opacity: 1;
}
