/* --- THEME: DARKISH AESTHETIC --- */
:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #252525;
    --border-color: #333333;
    --border-color-light: #4A4A4A;
    --text-primary: #E8E8E8;
    --text-secondary: #B0B0B0;
    --text-tertiary: #777777;
    --accent-primary: #8A2BE2;
    --accent-primary-dark: #6A1B9A;
    --accent-primary-rgb: 138, 43, 226;
    --accent-primary-text: #FFFFFF;

    --status-success: #28a745;
    --status-success-light: rgba(40, 167, 69, 0.2);
    --status-success-rgb: 40, 167, 69;
    --status-success-text: #ffffff;
    --status-success-on-dark: var(--status-success);

    --status-live: #9370DB;
    --status-warning: #9370DB;
    --status-live-light: rgba(147, 112, 219, 0.2);
    --status-live-rgb: 147, 112, 219;
    --status-live-text: #FFFFFF;
    --status-live-on-dark: var(--status-live);

    --status-declined: #dc3545;
    --status-danger: #dc3545;
    --status-declined-light: rgba(220, 53, 69, 0.2);
    --status-declined-rgb: 220, 53, 69;
    --status-declined-text: #ffffff;
    --status-declined-on-dark: var(--status-declined);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.7);
    --shadow-accent: 0 0 12px rgba(var(--accent-primary-rgb), 0.5);
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --scrollbar-thumb-color: #555;
    --scrollbar-track-color: var(--bg-primary);
    --scrollbar-thumb-hover-color: var(--accent-primary);
    --lm-bg-primary: #f0f2f5;
    --lm-bg-secondary: #ffffff;
    --lm-bg-tertiary: #e4e6ea;
    --lm-border-color: #dadde1;
    --lm-text-primary: #1c1e21;
    --lm-text-secondary: #606770;
    --lm-text-tertiary: #8a8d91;
    --lm-accent-primary: #8A2BE2;
    --lm-accent-primary-dark: #6A1B9A;
    --lm-accent-primary-text: #FFFFFF;
    --lm-status-success: #28a745;
    --lm-status-live: #9370DB;
    --lm-status-declined: #dc3545;
    --lm-scrollbar-thumb-color: #bcc0c4;
    --lm-scrollbar-track-color: var(--lm-bg-primary);
    --lm-scrollbar-thumb-hover-color: #8a8d91;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-title {
    text-align: center;
}

.main-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 2px red;
    text-shadow: 0 0 10px rgba(var(--accent-primary-rgb), 0.5);
    /* Removed animations to reduce memory usage */
    /* animation: strokeCycle 3s infinite, lightingGlow 3s infinite alternate; */
}

/* Removed keyframes for strokeCycle and lightingGlow */
/*
@keyframes strokeCycle {
    0% { -webkit-text-stroke-color: red; }
    33% { -webkit-text-stroke-color: green; }
    66% { -webkit-text-stroke-color: blue; }
    100% { -webkit-text-stroke-color: red; }
}

@keyframes lightingGlow {
    0% {
        text-shadow:
            0 0 5px red,
            0 0 10px red,
            0 0 20px red,
            0 0 40px red,
            0 0 80px red;
    }
    50% {
        text-shadow:
            0 0 10px lime,
            0 0 20px lime,
            0 0 30px lime,
            0 0 50px lime,
            0 0 100px lime;
    }
    100% {
        text-shadow:
            0 0 5px blue,
            0 0 10px blue,
            0 0 20px blue,
            0 0 40px blue,
            0 0 80px blue;
    }
}
*/

.secondary-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 2px red;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    /* Removed animation to reduce memory usage */
    /* animation: redWhiteCycle 2s infinite alternate; */
}

/* Removed keyframes for redWhiteCycle */
/*
@keyframes redWhiteCycle {
    0% {
        color: white;
        -webkit-text-stroke-color: red;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    100% {
        color: red;
        -webkit-text-stroke-color: white;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}
*/

.floating-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: red;
    border-radius: 50%;
    animation: floatParticles 10s infinite linear, rgbParticleCycle 6s infinite;
    opacity: 0.3;
}

@keyframes rgbParticleCycle {
    0% { background-color: red; }
    33% { background-color: green; }
    66% { background-color: blue; }
    100% { background-color: red; }
}

.modal-title {
    font-size: 2.25rem;
}

.title-underline {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
    margin: 0 auto;
}

html {
    font-size: 100%; /* Base for rem units */
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a1a 50%, var(--bg-primary) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    font-weight: 400;
    font-size: 13px; /* Base font size */
    transition: background .3s ease, color .3s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body.light-mode {
    --bg-primary: var(--lm-bg-primary);
    --bg-secondary: var(--lm-bg-secondary);
    --bg-tertiary: var(--lm-bg-tertiary);
    --border-color: var(--lm-border-color);
    --border-color-light: #ced4da;
    --text-primary: var(--lm-text-primary);
    --text-secondary: var(--lm-text-secondary);
    --text-tertiary: var(--lm-text-tertiary);
    --accent-primary: var(--lm-accent-primary);
    --accent-primary-dark: var(--lm-accent-primary-dark);
    --accent-primary-text: var(--lm-accent-primary-text);

    --status-success: var(--lm-status-success);
    --status-success-light: rgba(40, 167, 69, 0.1);
    --status-success-text: #fff;
    --status-success-on-dark: var(--lm-status-success);

    --status-live: var(--lm-status-live);
    --status-warning: var(--lm-status-live);
    --status-live-light: rgba(255, 165, 0, 0.1);
    --status-live-text: #212529;
    --status-live-on-dark: var(--lm-status-live);

    --status-declined: var(--lm-status-declined);
    --status-danger: var(--lm-status-declined);
    --status-declined-light: rgba(220, 53, 69, 0.1);
    --status-declined-text: #fff;
    --status-declined-on-dark: var(--lm-status-declined);

    --scrollbar-thumb-color: var(--lm-scrollbar-thumb-color);
    --scrollbar-track-color: var(--lm-scrollbar-track-color);
    --scrollbar-thumb-hover-color: var(--lm-scrollbar-thumb-hover-color);
}

body.light-mode .input-group-text-venex img {
    filter: none;
}

body.light-mode select.form-input option {
    background: var(--lm-bg-tertiary);
    color: var(--lm-text-primary);
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 950px;
    margin: 0 auto;
    padding: 1.25rem;
    position: relative;
    z-index: 10;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.app-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 70px;
}

.app-logo-container img {
    height: 140px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-action-icon {
    width: 32px;
    height: 32px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.theme-action-icon:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-accent);
}

.theme-action-icon i {
    font-size: 0.9rem;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 22px;
    position: relative;
    width: 44px;
    cursor: pointer;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: var(--text-secondary);
    bottom: 2px;
    content: "";
    height: 16px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 16px;
}

input:checked + .slider {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: var(--accent-primary-text);
}

.slider.round {
    border-radius: 22px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider .sun-icon-slider, .slider .moon-icon-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: opacity .3s ease;
    pointer-events: none;
}

.slider .sun-icon-slider {
    left: 4px;
    opacity: 0;
    color: var(--accent-primary);
}

.slider .moon-icon-slider {
    right: 4px;
    opacity: 1;
    color: var(--text-tertiary);
}

input:checked + .slider .sun-icon-slider {
    opacity: 1;
    color: var(--accent-primary-text);
}

input:checked + .slider .moon-icon-slider {
    opacity: 0;
}

body.light-mode .slider {
    background-color: var(--lm-bg-tertiary);
    border-color: var(--lm-border-color);
}

body.light-mode .slider:before {
    background-color: var(--lm-text-secondary);
}

body.light-mode input:checked + .slider {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

body.light-mode input:checked + .slider:before {
    background-color: var(--accent-primary-text);
}

body.light-mode .slider .moon-icon-slider {
    color: var(--lm-text-tertiary);
}

.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.counter {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    border-top-width: 2px;
    border-top-style: solid;
}

.counter:hover {
    border-color: var(--border-color-light);
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.counter.approved {
    border-top-color: var(--status-success);
}

.counter.live {
    border-top-color: var(--status-live);
}

.counter.declined {
    border-top-color: var(--status-declined);
}

.counter-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.4rem;
    font-size: 0.9rem;
}

.counter.approved .counter-icon {
    background: var(--status-success-light);
    color: var(--status-success-on-dark);
}

.counter.live .counter-icon {
    background: var(--status-live-light);
    color: var(--status-live-on-dark);
}

.counter.declined .counter-icon {
    background: var(--status-declined-light);
    color: var(--status-declined-on-dark);
}

.counter-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.counter.approved .counter-value.approved {
    color: var(--status-success-on-dark);
}

.counter.live .aprovadas {
    color: var(--status-live-on-dark);
}

.counter.declined .reprovadas {
    color: var(--status-declined-on-dark);
}

.progress-container {
    width: 100%;
    height: 4px;
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.progress-bar {
    height: 100%;
    background: var(--accent-primary);
    width: 0%;
    transition: width 0.4s ease-out;
    border-radius: var(--radius-full);
    animation: rainbow 2s infinite;
}

@keyframes rainbow {
    0% { background: red; }
    16.66% { background: orange; }
    33.33% { background: yellow; }
    50% { background: green; }
    66.66% { background: blue; }
    83.33% { background: indigo; }
    100% { background: violet; }
}

.control-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: var(--radius-md);
    padding: 1rem;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
    transition: all var(--transition-fast);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

body.light-mode .card {
    background: rgba(255, 255, 255, 0.7);
}

.card:first-child {
    margin-top: 0;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-icon {
    width: 24px;
    height: 24px;
    background: rgba(var(--accent-primary-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.card-title {
    font-weight: 600;
    font-size: 1.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    margin-bottom: 0.8rem;
}

.card-footer {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label i {
    color: var(--accent-primary);
    margin-right: .3rem;
    font-size: 0.9em;
}

textarea.form-input, input.form-input, select.form-input {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
    transition: all var(--transition-fast);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.4;
}

textarea.form-input {
    min-height: 60px;
    resize: vertical;
}

textarea.form-input[rows="1"] {
    height: calc(1.4em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

textarea.form-input:focus, input.form-input:focus, select.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1.5px rgba(var(--accent-primary-rgb), 0.3);
}

.form-input.is-invalid-input {
    border-color: var(--status-danger) !important;
    box-shadow: 0 0 0 1.5px rgba(var(--status-declined-rgb), 0.4) !important;
}

select.form-input option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

textarea.form-input::placeholder, input.form-input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
    text-transform: uppercase;
    font-size: 0.9em;
}

.form-row-flex {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-group-half {
    flex: 1;
    min-width: calc(50% - 0.375rem);
}

.form-group-full {
    flex: 1 0 100%;
}

.btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.btn:active {
    transform: translateY(1px);
}

.btn:hover {
    transform: scale(1.05);
}

.btn i {
    font-size: 0.8rem;
}

.btn-action {
    background-color: var(--accent-primary);
    color: var(--accent-primary-text);
    border-color: var(--accent-primary);
}

.btn-action:hover {
    background-color: var(--accent-primary-dark);
    border-color: var(--accent-primary-dark);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.btn-success, .btn-copy-approved {
    background-color: var(--status-success) !important;
    color: var(--status-success-text) !important;
    border-color: var(--status-success) !important;
}

.btn-success:hover, .btn-copy-approved:hover {
    filter: brightness(0.9);
}

.btn-live, .btn-copy-live {
    background-color: var(--status-live) !important;
    color: var(--status-live-text) !important;
    border-color: var(--status-live) !important;
}

.btn-live:hover, .btn-copy-live:hover {
    filter: brightness(0.9);
}

.btn-danger, .btn-trash, .btn-trash-approved, .btn-trash-live {
    background-color: var(--status-declined) !important;
    color: var(--status-declined-text) !important;
    border-color: var(--status-declined) !important;
}

.btn-danger:hover, .btn-trash:hover, .btn-trash-approved:hover, .btn-trash-live:hover {
    filter: brightness(0.9);
}

body.light-mode .btn-success, body.light-mode .btn-copy-approved {
    color: #fff !important;
}

body.light-mode .btn-live, body.light-mode .btn-copy-live {
    color: var(--lm-accent-primary-text) !important;
}

body.light-mode .btn-danger, body.light-mode .btn-trash, body.light-mode .btn-trash-approved, body.light-mode .btn-trash-live {
    color: #fff !important;
}

.btn-sm {
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    background-color: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-tertiary) !important;
    box-shadow: none !important;
    transform: none !important;
}

body.light-mode .btn:disabled {
    background-color: var(--lm-bg-tertiary) !important;
    border-color: var(--lm-border-color) !important;
    color: var(--lm-text-tertiary) !important;
}

.generator-footer-btns {
    align-items: center;
}

.cardlist-badge {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.25em 0.5em;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    margin-left: 0.5rem;
    display: inline-block;
    min-width: 1.8em;
    text-align: center;
}

body.light-mode .cardlist-badge {
    background-color: var(--lm-bg-tertiary);
    color: var(--lm-text-secondary);
    border-color: var(--lm-border-color);
}

.input-group-venex {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend-venex .input-group-text-venex {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--text-secondary);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.6rem;
    width: 38px;
    height: 38px;
}

body.light-mode .input-group-prepend-venex .input-group-text-venex {
    background-color: var(--lm-bg-primary);
    border-color: var(--lm-border-color);
}

.input-group-text-venex img {
    max-height: 16px;
    width: auto;
    filter: grayscale(30%) contrast(110%);
}

.input-group-venex > .form-input:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.gate-credits-display-venex {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin-top: 0.3rem;
    margin-bottom: 0.7rem;
}

.gate-credits-display-venex a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.gate-credits-display-venex a:hover {
    text-decoration: underline;
    filter: brightness(0.9);
}

.amazon-cookie-helper-link-venex {
    font-size: 0.9em;
    margin-left: 0.3em;
}

.amazon-cookie-helper-link-venex a {
    color: var(--accent-primary);
}

.status-display-venex {
    text-align: center;
    margin-top: 0.7rem;
    margin-bottom: -0.2rem;
}

.badge-venex {
    display: inline-block;
    padding: 0.3em 0.6em;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-neutral-venex {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

body.light-mode .badge-neutral-venex {
    background-color: var(--lm-bg-tertiary);
    color: var(--lm-text-secondary);
    border: 1px solid var(--lm-border-color);
}

.badge-info {
    background-color: #17a2b8;
    color: #fff;
}

.badge-success {
    background-color: var(--status-success);
    color: var(--status-success-text);
}

.badge-warning {
    background-color: var(--status-warning);
    color: var(--status-live-text);
}

.badge-danger {
    background-color: var(--status-danger);
    color: var(--status-declined-text);
}

body.light-mode .badge-success {
    background-color: var(--lm-status-success);
    color: #fff;
}

body.light-mode .badge-warning {
    background-color: var(--lm-status-live);
    color: var(--lm-accent-primary-text);
}

body.light-mode .badge-danger {
    background-color: var(--lm-status-declined);
    color: #fff;
}

body.light-mode .badge-secondary {
    background-color: var(--lm-text-tertiary);
    color: var(--lm-bg-primary);
}

.proxy-status-indicator {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 0.5em;
}

.proxy-status-light {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-tertiary);
    margin-right: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.proxy-status-light.green {
    background-color: var(--status-success);
    box-shadow: 0 0 6px var(--status-success);
}

.proxy-status-light.red {
    background-color: var(--status-declined);
    box-shadow: 0 0 6px var(--status-declined);
}

.proxy-status-text {
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    visibility: hidden;
}

.proxy-status-text.green-text {
    color: var(--status-success);
}

.proxy-status-text.red-text {
    color: var(--status-declined);
}

.results-display-stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.result-block {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.result-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--border-color-light);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-block-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-block-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-block-title i {
    font-size: 1rem;
}

.result-block-title .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 2.5em;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    cursor: default;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    margin-left: 0.25rem;
}

.result-block-title .badge.badge-success {
    background-color: var(--status-success);
    color: var(--status-success-text);
    border-color: var(--status-success);
}

.result-block-title .badge.badge-warning {
    background-color: var(--status-live);
    color: var(--status-live-text);
    border-color: var(--status-live);
}

.result-block-title .badge.badge-danger {
    background-color: var(--status-declined);
    color: var(--status-declined-text);
    border-color: var(--status-declined);
}

body.light-mode .result-block-title .badge.badge-success {
    background-color: var(--lm-status-success);
    color: #fff;
    border-color: var(--lm-status-success);
}

body.light-mode .result-block-title .badge.badge-warning {
    background-color: var(--lm-status-live);
    color: var(--lm-accent-primary-text);
    border-color: var(--lm-status-live);
}

body.light-mode .result-block-title .badge.badge-danger {
    background-color: var(--lm-status-declined);
    color: #fff;
    border-color: var(--lm-status-declined);
}

.result-block-approved .result-block-title span.title-text,
.result-block-approved .result-block-title i {
    color: var(--status-success-on-dark);
}

body.light-mode .result-block-approved .result-block-title span.title-text,
body.light-mode .result-block-approved .result-block-title i {
    color: var(--lm-status-success);
}

.result-block-live .result-block-title span.title-text,
.result-block-live .result-block-title i {
    color: var(--status-live-on-dark);
}

body.light-mode .result-block-live .result-block-title span.title-text,
body.light-mode .result-block-live .result-block-title i {
    color: var(--lm-status-live);
}

.result-block-declined .result-block-title span.title-text,
.result-block-declined .result-block-title i {
    color: var(--status-declined-on-dark);
}

body.light-mode .result-block-declined .result-block-title span.title-text,
body.light-mode .result-block-declined .result-block-title i {
    color: var(--lm-status-declined);
}

.result-block-body {
    flex-grow: 1;
}

.result-box-compact {
    background-color: var(--bg-primary);
    padding: 0.6rem;
    overflow-y: auto;
    font-size: 0.65rem;
    line-height: 1.4;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

body.light-mode .result-block {
    background-color: var(--lm-bg-secondary);
    border-color: var(--lm-border-color);
}

body.light-mode .result-block-header {
    border-bottom-color: var(--lm-border-color);
}

body.light-mode .result-box-compact {
    background-color: var(--lm-bg-primary);
}

.result-box-compact > div {
    padding: 0.1rem 0 0.1rem 0.4rem;
    margin-bottom: 0.2rem;
    display: block;
    border-left-width: 2px;
    border-left-style: solid;
    color: var(--text-primary);
}

.result-box-compact .approved-entry {
    border-left-color: var(--status-success);
}

.result-box-compact .live-entry {
    border-left-color: var(--status-live);
}

.result-box-compact .declined-entry {
    border-left-color: var(--status-declined);
}

.result-box-compact span.text-success {
    color: var(--status-success-on-dark) !important;
    font-weight: 500;
}

.result-box-compact span.text-danger {
    color: var(--status-declined-on-dark) !important;
    font-weight: 500;
}

.result-box-compact span.text-warning {
    color: var(--status-live-on-dark) !important;
    font-weight: 500;
}

body.light-mode .result-box-compact span.text-success {
    color: var(--lm-status-success) !important;
}

body.light-mode .result-box-compact span.text-danger {
    color: var(--lm-status-declined) !important;
}

body.light-mode .result-box-compact span.text-warning {
    color: var(--lm-status-live) !important;
}

.result-box-compact .badge.badge-success {
    background-color: var(--status-success-light);
    color: var(--status-success-on-dark);
    border: 1px solid var(--status-success);
    padding: .15em .4em;
    font-size: 0.9em;
    border-radius: var(--radius-sm);
}

.result-box-compact .badge.badge-warning {
    background-color: var(--status-live-light);
    color: var(--status-live-on-dark);
    border: 1px solid var(--status-live);
    padding: .15em .4em;
    font-size: 0.9em;
    border-radius: var(--radius-sm);
}

.result-box-compact .badge.badge-danger {
    background-color: var(--status-declined-light);
    color: var(--status-declined-on-dark);
    border: 1px solid var(--status-declined);
    padding: .15em .4em;
    font-size: 0.9em;
    border-radius: var(--radius-sm);
}

body.light-mode .result-box-compact .badge.badge-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--lm-status-success);
    border-color: var(--lm-status-success);
}

body.light-mode .result-box-compact .badge.badge-warning {
    background-color: rgba(255, 165, 0, 0.1);
    color: #856404;
    border-color: #ffc107;
}

body.light-mode .result-box-compact .badge.badge-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--lm-status-declined);
    border-color: var(--lm-status-declined);
}

hr.gradient-hr {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
    margin: 1.25rem 0;
    position: relative;
    border: none;
    opacity: 0.2;
}

.app-footer {
    text-align: center;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 1.7rem;
    position: relative;
}

.app-footer a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.app-footer a:hover {
    filter: brightness(0.9);
    text-decoration: underline;
}

.heart-icon {
    color: var(--accent-primary);
    display: inline-block;
    animation: heartbeat 1.5s infinite;
    margin: 0 0.1em;
    font-size: 0.9em;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.footer-spotify-player {
    margin-bottom: 1rem;
}

.result-box-compact::-webkit-scrollbar, textarea.form-input::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.result-box-compact::-webkit-scrollbar-track, textarea.form-input::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: var(--scrollbar-track-color);
    border-radius: 2.5px;
}

.result-box-compact::-webkit-scrollbar-thumb, textarea.form-input::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color);
    border-radius: 2.5px;
    border: 1px solid var(--scrollbar-track-color);
}

.result-box-compact::-webkit-scrollbar-thumb:hover, textarea.form-input::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover-color);
}

.result-box-compact, textarea.form-input, body {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
}

#toast-container > .toast {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
    border: 1px solid var(--border-color);
    background-image: none !important;
    padding: 10px 10px 10px 40px;
    width: 300px;
    border-radius: var(--radius-sm);
    opacity: 0.95 !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

#toast-container > .toast:before {
    color: var(--text-secondary);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
}

#toast-container > .toast-success {
    background-color: var(--status-success) !important;
    color: var(--status-success-text) !important;
    border: none;
}

#toast-container > .toast-success:before {
    content: '\f00c';
    color: var(--status-success-text) !important;
}

#toast-container > .toast-error {
    background-color: var(--status-declined) !important;
    color: var(--status-declined-text) !important;
    border: none;
}

#toast-container > .toast-error:before {
    content: '\f00d';
    color: var(--status-declined-text) !important;
}

#toast-container > .toast-info {
    background-color: var(--accent-primary) !important;
    color: var(--accent-primary-text) !important;
    border: none;
}

#toast-container > .toast-info:before {
    content: '\f129';
    color: var(--accent-primary-text) !important;
}

#toast-container > .toast-warning {
    background-color: var(--status-live) !important;
    color: var(--status-live-text) !important;
    border: none;
}

#toast-container > .toast-warning:before {
    content: '\f071';
    color: var(--status-live-text) !important;
}

.toast-message {
    color: inherit !important;
    text-shadow: none;
}

.toast-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}

body.light-mode #toast-container > .toast {
    background-color: var(--lm-bg-secondary) !important;
    color: var(--lm-text-primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    border: 1px solid var(--lm-border-color);
}

body.light-mode #toast-container > .toast:before {
    color: var(--lm-text-secondary);
}

body.light-mode #toast-container > .toast-success {
    background-color: var(--lm-status-success) !important;
    color: #fff !important;
}

body.light-mode #toast-container > .toast-success:before {
    color: #fff !important;
}

body.light-mode #toast-container > .toast-error {
    background-color: var(--lm-status-declined) !important;
    color: #fff !important;
}

body.light-mode #toast-container > .toast-error:before {
    color: #fff !important;
}

body.light-mode #toast-container > .toast-info {
    background-color: var(--lm-accent-primary) !important;
    color: var(--lm-accent-primary-text) !important;
}

body.light-mode #toast-container > .toast-info:before {
    color: var(--lm-accent-primary-text) !important;
}

body.light-mode #toast-container > .toast-warning {
    background-color: var(--lm-status-live) !important;
    color: var(--lm-accent-primary-text) !important;
}

body.light-mode #toast-container > .toast-warning:before {
    color: var(--lm-accent-primary-text) !important;
}

.swal-custom {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-color) !important;
    font-family: 'JetBrains Mono', monospace !important;
}

.swal-custom .swal2-title {
    color: var(--accent-primary) !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 2.1rem !important;
    margin-bottom: 0.8em !important;
}

.swal-custom .swal2-html-container {
    color: var(--text-secondary) !important;
}

.swal-custom.swal-embed .swal2-html-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.swal-custom.swal-embed .swal2-popup {
    padding: 0.5em;
}

.swal-custom .swal2-confirm, .swal-custom .swal2-cancel, .swal-custom .swal2-close {
    margin: 0.5em !important;
    box-shadow: none !important;
    text-transform: uppercase;
    border-radius: var(--radius-sm) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
}

.swal-custom .swal2-confirm {
    background-color: var(--status-success) !important;
    color: var(--status-success-text) !important;
    border: 1px solid var(--status-success) !important;
}

.swal-custom .swal2-cancel {
    background-color: var(--status-declined) !important;
    color: var(--status-declined-text) !important;
    border: 1px solid var(--status-declined) !important;
}

.swal-custom .swal2-close:hover {
    color: var(--accent-primary) !important;
}

body.light-mode .swal-custom {
    background-color: var(--lm-bg-secondary) !important;
    color: var(--lm-text-primary) !important;
    border-color: var(--lm-border-color) !important;
}

body.light-mode .swal-custom .swal2-title {
    color: var(--lm-accent-primary) !important;
}

body.light-mode .swal-custom .swal2-html-container {
    color: var(--lm-text-secondary) !important;
}

body.light-mode .swal-custom .swal2-confirm {
    background-color: var(--lm-status-success) !important;
    color: #fff !important;
    border-color: var(--lm-status-success) !important;
}

body.light-mode .swal-custom .swal2-cancel {
    background-color: var(--lm-status-declined) !important;
    color: #fff !important;
    border-color: var(--lm-status-declined) !important;
}

body.light-mode .swal-custom .swal2-close:hover {
    color: var(--lm-accent-primary) !important;
}

.tutorial-links {
    margin-top: 15px;
    text-align: left;
    padding: 0 1rem 1rem 1rem;
}

.tutorial-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: rgba(var(--accent-primary-rgb), 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color var(--transition-fast);
}

.tutorial-link-item:hover {
    background-color: rgba(var(--accent-primary-rgb), 0.1);
    border-color: var(--border-color-light);
}

.tutorial-link-item img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.tutorial-link-item span {
    font-weight: 500;
    font-size: 0.75rem;
}

body.light-mode .tutorial-link-item {
    background-color: var(--lm-bg-tertiary);
}

body.light-mode .tutorial-link-item:hover {
    background-color: #dee2e6;
}

/* --- New Background Styles --- */
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.box {
    position: absolute;
    background: rgba(var(--accent-primary-rgb), 0.08);
    border: 1px solid rgba(var(--accent-primary-rgb), 0.1);
    border-radius: 10px;
    animation: float 15s infinite linear;
    will-change: transform, opacity;
    box-shadow: 0 0 10px rgba(var(--accent-primary-rgb), 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1200px) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body { font-size: 12px; }
    .app-container { padding: 0.75rem; }
    .app-header { flex-direction: column; align-items: center; gap: 0.75rem; }
    .app-logo-container { margin-bottom: 0.5rem; }
    .app-actions { width: 100%; justify-content: space-around; }

    .proxy-toggle-wrapper { flex-direction: column; align-items: flex-start !important; gap: 0.5rem; }

    .counters { grid-template-columns: 1fr; gap: 0.5rem; }
    .counter { padding: 0.6rem; }
    .counter-value { font-size: 1.2rem; }
    .progress-container { margin-bottom: 1rem; height: 3px;}
    .btn { padding: 0.4rem 0.7rem; font-size: 0.65rem; }
    .checker-action-btns, .generator-footer-btns { flex-direction: column; align-items: stretch; }
    .checker-action-btns .btn, .generator-footer-btns .btn { width: 100%; margin-bottom: 0.3rem; }
    .cardlist-badge { margin-left: 0; margin-top: 0.3rem; align-self: center; }

    .result-block-header { flex-direction: row; align-items: center; }
    .result-block-header .result-block-title { flex-grow: 1; }
    .result-block-header .result-block-actions { justify-content: flex-end; }

    .result-block-title { font-size: 0.7rem;}
    .result-block-title i { font-size: 0.9rem;}
    .result-block-title .badge { font-size: 0.6rem; padding: 0.25rem 0.5rem;}

    .form-row-flex { flex-direction: column; gap: 0.8rem; }
    .form-group-half { min-width: 100%; }
    .result-box-compact { font-size: .65rem; }

    .swal-custom.swal-embed .swal2-popup {
        width: 95vw !important;
    }
    .footer-spotify-player iframe {
        height: 152px;
    }
}

/* Custom styles for result sections */
#cvv-div, #ccn-div, #dead-div {
    font-size: 1em;
    color: white;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
}

#cvv-div.show, #ccn-div.show, #dead-div.show {
    opacity: 1;
    transform: translateY(0);
}

/* Button press animations and visual feedback */
#cvv-show-btn, #ccn-show-btn, #dead-show-btn {
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

#cvv-show-btn:active, #ccn-show-btn:active, #dead-show-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 0 2px rgba(var(--accent-primary-rgb), 0.3);
}

#cvv-show-btn:hover, #ccn-show-btn:hover, #dead-show-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(var(--accent-primary-rgb), 0.4);
}

#cvv-show-btn.pressed, #ccn-show-btn.pressed, #dead-show-btn.pressed {
    background-color: rgba(var(--accent-primary-rgb), 0.2);
    border-color: var(--accent-primary);
}

.info-cvv {
    color: green;
}

.info-ccn {
    color: yellow;
}

.info-dead {
    color: red;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: floatParticles 12s infinite linear;
    opacity: 0.6;
    box-shadow: 0 0 10px currentColor;
}

.floating-particles span:nth-child(odd) {
    background: #ff00ff; /* Neon pink */
    color: #ff00ff;
}

.floating-particles span:nth-child(even) {
    background: #00ffff; /* Neon cyan */
    color: #00ffff;
}

.floating-particles span:nth-child(3n) {
    background: #00ff00; /* Neon green */
    color: #00ff00;
}

.floating-particles span:nth-child(4n) {
    background: #ff4500; /* Neon orange */
    color: #ff4500;
}

.floating-particles span:nth-child(5n) {
    background: #8000ff; /* Neon purple */
    color: #8000ff;
}

.floating-particles span:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-particles span:nth-child(2) {
    top: 20%;
    left: 95%;
    animation-delay: 1s;
}

.floating-particles span:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.floating-particles span:nth-child(4) {
    top: 50%;
    left: 90%;
    animation-delay: 3s;
}

.floating-particles span:nth-child(5) {
    top: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-particles span:nth-child(6) {
    top: 80%;
    left: 85%;
    animation-delay: 5s;
}

.floating-particles span:nth-child(7) {
    top: 60%;
    left: 20%;
    animation-delay: 6s;
}

.floating-particles span:nth-child(8) {
    top: 40%;
    left: 80%;
    animation-delay: 7s;
}

.floating-particles span:nth-child(9) {
    top: 15%;
    left: 25%;
    animation-delay: 8s;
}

.floating-particles span:nth-child(10) {
    top: 85%;
    left: 75%;
    animation-delay: 9s;
}

.floating-particles span:nth-child(11) {
    top: 45%;
    left: 30%;
    animation-delay: 10s;
}

.floating-particles span:nth-child(12) {
    top: 55%;
    left: 70%;
    animation-delay: 11s;
}

.floating-particles span:nth-child(13) {
    top: 25%;
    left: 35%;
    animation-delay: 12s;
}

.floating-particles span:nth-child(14) {
    top: 75%;
    left: 65%;
    animation-delay: 13s;
}

.floating-particles span:nth-child(15) {
    top: 35%;
    left: 40%;
    animation-delay: 14s;
}

.floating-particles span:nth-child(16) {
    top: 65%;
    left: 60%;
    animation-delay: 15s;
}

@keyframes floatParticles {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
        transform: translateX(5vw) translateY(-5vh) rotate(10deg) scale(1.1);
    }
    20% {
        transform: translateX(10vw) translateY(-10vh) rotate(-5deg) scale(1.3);
    }
    30% {
        transform: translateX(15vw) translateY(-15vh) rotate(15deg) scale(1.0);
    }
    40% {
        transform: translateX(20vw) translateY(-20vh) rotate(-10deg) scale(1.2);
    }
    50% {
        transform: translateX(25vw) translateY(-25vh) rotate(20deg) scale(0.9);
    }
    60% {
        transform: translateX(30vw) translateY(-30vh) rotate(-15deg) scale(1.1);
    }
    70% {
        transform: translateX(35vw) translateY(-35vh) rotate(25deg) scale(1.0);
    }
    80% {
        transform: translateX(40vw) translateY(-40vh) rotate(-20deg) scale(1.2);
    }
    90% {
        transform: translateX(45vw) translateY(-45vh) rotate(30deg) scale(0.8);
    }
    100% {
        transform: translateX(50vw) translateY(-50vh) rotate(0deg) scale(1);
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Remove animated background from entire select */
#gates {
    background: var(--bg-primary);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

/* Fix dropdown options background and text color */
#gates option {
    background: black;
    color: white;
}

/* Animated RGB text for specific options */
#gates option:nth-child(1),
#gates option:nth-child(51),
#gates option:nth-child(62) {
    animation: rgbTextAnimation 3s linear infinite;
    font-weight: bold;
}

@keyframes rgbTextAnimation {
    0% { color: red; }
    16.66% { color: orange; }
    33.33% { color: yellow; }
    50% { color: green; }
    66.66% { color: blue; }
    83.33% { color: indigo; }
    100% { color: violet; }
}

/* Fix alignment of sites input and editIcon */
.sites-container {
    position: relative;
    display: flex;
    align-items: center;
}

#sites {
    flex: 1;
    padding-right: 40px; /* Space for the icon */
}

#editIcon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 5px;
    border-radius: 3px;
    transition: color 0.3s ease;
}

#editIcon:hover {
    color: var(--accent-primary);
}
