* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*:focus {
    outline: none !important;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    touch-action: manipulation;
}

button:focus,
button:focus-visible,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --accent-blue: #0066ff;
    --accent-green: #00ff00;
    --border-color: #333333;
    --header-height: 60px;
    --bottom-nav-height: 70px;
}

html, body {
    touch-action: pan-y;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Permitir selección en inputs y contenido de modales */
input, textarea, .modal-content, .notification-full {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ==================== LANDING PAGE ==================== */
.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.landing-page.hidden {
    display: none !important;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.landing-content {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-logo {
    margin-bottom: 30px;
}

.landing-logo img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.landing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    text-align: center;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 40px;
}

.btn-landing {
    width: 100%;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-landing:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-landing:focus-visible {
    outline: none !important;
}

.btn-primary-landing {
    background: linear-gradient(135deg, var(--accent-blue), #0099ff);
    box-shadow: none;
}

.btn-primary-landing:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-primary-landing:focus {
    outline: none;
    box-shadow: none !important;
}

.btn-primary-landing:active {
    transform: translateY(0);
    box-shadow: none !important;
}

.btn-secondary-landing {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.btn-secondary-landing:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary-landing:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none !important;
}

.btn-secondary-landing:active {
    transform: translateY(0);
    box-shadow: none !important;
}

.landing-social {
    margin-top: 30px;
    text-align: center;
}

.social-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.app-container {
    min-height: 100vh;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--text-primary);
}

.plan-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge.premium {
    color: #FFD700;
    font-weight: bold;
}

.menu-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
    font-size: 28px;
    color: var(--text-primary);
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

/* ==================== SIDE MENU ==================== */
/* Overlay del menú lateral */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

.side-menu.show {
    right: 0;
}

.side-menu-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    background-color: var(--bg-secondary);
    height: 100%;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    float: right;
}

.side-menu a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.user-name {
    font-weight: 600;
    color: var(--accent-blue);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-top: var(--header-height);
    margin-bottom: var(--bottom-nav-height);
    min-height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
    padding: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== BOARD SELECTOR ==================== */
.board-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.board-dropdown {
    flex: 1;
    position: relative;
}

.board-dropdown-btn {
    width: 100%;
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.board-dropdown-btn:hover {
    border-color: var(--accent-blue);
}

.board-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 5px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.board-dropdown-item {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.board-dropdown-item:last-child {
    border-bottom: none;
}

.board-dropdown-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.board-dropdown-item.active {
    background-color: rgba(59, 130, 246, 0.2);
}

.board-item-name {
    flex: 1;
    color: var(--text-primary);
}

.board-item-actions {
    display: flex;
    gap: 4px;
}

.btn-board-action {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit-board:hover {
    background-color: rgba(59, 130, 246, 0.3);
}

.btn-delete-board:hover {
    background-color: rgba(220, 38, 38, 0.3);
}

.board-select {
    flex: 1;
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-new-board {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* ==================== AUDIO GRID ==================== */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px 0;
}

.audio-card {
    aspect-ratio: 1;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    gap: 8px;
    padding: 12px;
}

.audio-card.playing {
    border-color: var(--glow-color);
    box-shadow: 0 0 1px var(--glow-color), 0 0 2px var(--glow-color);
}

.audio-card.locked {
    opacity: 0.3;
    cursor: not-allowed;
}

.audio-card.locked::after {
    content: '🔒';
    position: absolute;
    font-size: 24px;
}

.audio-card:active:not(.locked) {
    transform: scale(0.95);
}

.audio-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-card-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.audio-card-title {
    font-size: 12px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
}

.play-indicator {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.audio-card.playing .play-indicator {
    opacity: 1;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.audio-card.playing {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 3px var(--glow-color, #00ff00),
                    0 0 5px var(--glow-color, #00ff00);
    }
    50% {
        box-shadow: 0 0 5px var(--glow-color, #00ff00),
                    0 0 8px var(--glow-color, #00ff00),
                    0 0 10px var(--glow-color, #00ff00);
    }
}

.audio-card.add-button {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.audio-card.add-button .audio-card-icon {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== BOTTOM NAV ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    max-width: 600px;
    margin: 0 auto;
}

.nav-item {
    flex: 1;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-item.active {
    color: var(--text-primary);
}

.nav-icon {
    width: 28px;
    height: 28px;
}

.nav-item-center {
    position: relative;
    margin-top: -30px;
}

.nav-center-circle {
    width: 85px;
    height: 85px;
    background: #000000;
    border: 2px solid #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        border-color: #3B82F6;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 6px rgba(59, 130, 246, 0.6), 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        border-color: #60A5FA;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(59, 130, 246, 0.7), 0 0 14px rgba(59, 130, 246, 0.4);
    }
}

.nav-v-logo {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 16px;
    max-width: 320px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-dark {
    background: var(--bg-card);
    color: var(--text-primary);
}

.modal-dark h2 {
    color: var(--accent-blue);
    margin-bottom: 16px;
    font-size: 16px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.modal-dark .close-btn {
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.input-dark {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 16px;
}

.input-dark::placeholder {
    color: var(--text-secondary);
}

/* Color Circles */
.color-circles {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.color-circle:hover {
    transform: scale(1.1);
}

.color-circle.selected {
    border-color: var(--text-primary);
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.icon-option {
    aspect-ratio: 1;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
}

.icon-option svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.icon-option:hover {
    background-color: var(--border-color);
}

.icon-option.selected {
    border-color: var(--accent-blue);
    background-color: var(--accent-blue);
}

/* Volume Slider */
.volume-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #333;
    border-radius: 5px;
    outline: none;
    transition: background 0.15s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 20px;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scaleY(1.1);
}

.volume-slider::-moz-range-thumb {
    width: 6px;
    height: 20px;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scaleY(1.1);
}

.volume-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
}

.volume-slider::-moz-range-track {
    height: 8px;
    border-radius: 5px;
    background: #333;
}

/* Modal Buttons */
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-primary {
    flex: 1;
    background-color: var(--accent-blue);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    flex: 1;
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Auth Modals */
.modal-auth {
    max-width: 450px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.auth-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
    margin-top: -15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Términos y Condiciones */
.terms-content {
    color: var(--text-primary);
    line-height: 1.8;
    padding: 0 10px;
}

.terms-content h2 {
    color: #a78bfa;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.terms-content h3 {
    color: #c4b5fd;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.terms-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-align: justify;
}

.terms-content ul, .terms-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.terms-content li {
    margin-bottom: 8px;
}

.terms-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.terms-content a {
    color: #a78bfa;
    text-decoration: underline;
}

.terms-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(167, 139, 250, 0.3);
    margin-bottom: 20px;
}

.form-group-auth {
    margin-bottom: 20px;
}

.form-group-auth label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    margin-left: 4px;
}

.form-group-auth input,
.form-group-auth select {
    width: 100%;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-link a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Forms (Login/Register) */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input,
.modal-content select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.modal-content button[type="submit"] {
    padding: 14px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.form-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Modal Overlay and Container */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-container {
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 20px;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ==================== SECTIONS ==================== */
.section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section h1 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 24px;
}

/* Profile Info */
.profile-info {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.profile-info p {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.profile-info p:last-child {
    border-bottom: none;
}

.profile-info strong {
    color: var(--text-secondary);
    margin-right: 10px;
}

.profile-info .plan-badge.premium {
    color: #FFD700;
}

/* ==================== PERFIL MEJORADO ==================== */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.profile-initials {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.profile-plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.profile-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.profile-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3B82F6;
}

.profile-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.profile-value {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: right;
}

/* ==================== VEPS CARD ==================== */
.veps-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1.586; /* Proporción tarjeta de crédito */
    background: linear-gradient(135deg, #0047b3 0%, #0066ff 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    color: white;
    overflow: hidden;
}

.veps-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background-image: url('public/images/v_white.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.15;
    pointer-events: none;
    clip-path: inset(0 0 0 0);
}

.veps-card-chip {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.veps-card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.veps-card-points {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.veps-card-points-label {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(calc(-50% + 35px));
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.veps-card-name {
    position: absolute;
    bottom: 45px;
    left: 25px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.veps-card-code {
    position: absolute;
    bottom: 20px;
    left: 25px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
    letter-spacing: 1.5px;
}

/* ==================== ADMIN PANEL ==================== */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.admin-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.admin-tab:hover {
    color: var(--text-primary);
}

.admin-tab.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6;
}

.admin-tab-content {
    padding: 20px 0;
}

.admin-section-header {
    margin-bottom: 20px;
}

.admin-section-header h2 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.admin-table-container {
    overflow-x: auto;
    margin-top: 15px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

/* Notification Form Styles */
.notification-form-container {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-form-container h3 {
    margin: 0 0 20px 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.notification-form-group {
    margin-bottom: 20px;
}

.notification-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.notification-form-group select,
.notification-form-group input,
.notification-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.notification-form-group select:focus,
.notification-form-group input:focus,
.notification-form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.notification-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send-notification {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-send-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-send-notification:active {
    transform: translateY(0);
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 90%;
    max-width: 400px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-popup.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

.notification-popup-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.notification-popup-header.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.notification-popup-header.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.notification-popup-header.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.notification-popup-header.important {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-popup-header.info .notification-icon {
    background: #3B82F6;
    color: white;
}

.notification-popup-header.success .notification-icon {
    background: #10B981;
    color: white;
}

.notification-popup-header.warning .notification-icon {
    background: #F59E0B;
    color: white;
}

.notification-popup-header.important .notification-icon {
    background: #EF4444;
    color: white;
}

.notification-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.notification-popup-body {
    padding: 16px;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
}

.notification-popup-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.btn-notification-action {
    padding: 8px 16px;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-notification-action:hover {
    background: #2563EB;
    transform: translateY(-1px);
}

.btn-notification-action:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .notification-popup {
        top: 70px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
}

.admin-table thead {
    background: rgba(59, 130, 246, 0.1);
}

.admin-table th {
    padding: 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}

.admin-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-edit {
    background: #3B82F6;
    color: white;
}

.btn-edit:hover {
    background: #2563EB;
}

.btn-delete {
    background: #EF4444;
    color: white;
}

.btn-delete:hover {
    background: #DC2626;
}

.plan-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.premium {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.plan-badge.admin {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.type-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.voice {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.type-badge.background {
    background: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.avail-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.avail-badge.free {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.avail-badge.premium {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.stat-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== HELP / AYUDA ==================== */
.help-search {
    margin-bottom: 20px;
}

.help-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.help-category-btn {
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.help-category-btn:hover {
    border-color: #3B82F6;
    color: var(--text-primary);
}

.help-category-btn.active {
    background: #3B82F6;
    border-color: #3B82F6;
    color: white;
}

.help-content {
    margin-top: 20px;
}

.help-category-content {
    display: block;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #3B82F6;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '▼';
    font-size: 12px;
    color: #3B82F6;
    transition: transform 0.3s;
}

.faq-item.expanded .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.expanded .faq-answer {
    max-height: 500px;
    padding: 0 20px 16px 20px;
}

.help-contact {
    text-align: center;
}

/* ==================== AUDIO SELECTOR MODAL ==================== */
.audio-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    max-height: 400px;
    overflow-y: auto;
}

.audio-selector-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-selector-item:hover {
    border-color: var(--accent-blue);
}

.audio-selector-item.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 102, 255, 0.1);
}

.audio-selector-item .checkbox-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-selector-item.selected .checkbox-indicator {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.audio-selector-item.selected .checkbox-indicator::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.audio-selector-item .selector-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.audio-selector-item .selector-name {
    font-size: 11px;
    text-align: center;
    color: var(--text-primary);
    padding: 0 5px;
}

/* ==================== NOTIFICATIONS ==================== */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.notification-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.notification-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notification-card.unread {
    border-left: 4px solid var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.notification-type-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-type-badge.info {
    background: #3B82F6;
    color: white;
}

.notification-type-badge.success {
    background: #10B981;
    color: white;
}

.notification-type-badge.warning {
    background: #F59E0B;
    color: white;
}

.notification-type-badge.important {
    background: #EF4444;
    color: white;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    flex: 1;
}

.notification-unread-dot {
    width: 10px;
    height: 10px;
    background: #3B82F6;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.notification-preview {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0;
}

.notification-list {
    margin-top: 20px;
}

.loading-message {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Notification Detail Modal */
.notification-detail-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-type-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.notification-detail-date {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.notification-detail-content {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 600px) {
    .main-content {
        padding: 15px;
    }
    
    .audio-grid {
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .audio-card-icon {
        font-size: 40px;
    }
    
    .audio-card-title {
        font-size: 10px;
    }
}

/* ==================== SELECT MODE ==================== */
.edit-mode-actions {
    flex-direction: row !important;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.btn-edit-action {
    flex: 1;
    max-width: 180px;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-edit-action:active {
    transform: scale(0.95);
}

.btn-delete-mode {
    background-color: #dc2626;
    color: white;
}

.btn-delete-mode svg {
    fill: white;
}

.btn-delete-mode:hover {
    background-color: #b91c1c;
}

.btn-done-mode {
    background-color: #10b981;
    color: white;
}

.btn-done-mode svg {
    fill: white;
}

.btn-done-mode:hover {
    background-color: #059669;
}

.btn-edit-mode {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.btn-edit-mode:hover {
    border-color: var(--accent-blue);
}

.btn-edit-mode.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-edit-mode:active {
    transform: scale(0.95);
}

.audio-checkbox {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
    accent-color: var(--accent-blue);
}

.audio-grid.edit-mode .audio-card:not(.add-button) {
    cursor: move;
    touch-action: none; /* Prevenir scroll mientras se arrastra */
}

/* Elemento original mientras se arrastra */
.audio-card.dragging-source {
    opacity: 0.3;
}

/* Clon que sigue al dedo/mouse */
.dragging-clone {
    opacity: 0.8;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: none;
}

/* Para desktop drag & drop nativo */
.audio-card.dragging {
    opacity: 0.3;
}

.audio-card.drag-over {
    border-color: var(--accent-blue);
    box-shadow: 0 0 12px var(--accent-blue);
    transform: scale(0.95);
    background-color: rgba(59, 130, 246, 0.1);
}

.board-actions {
    margin-bottom: 15px;
}

.btn-delete {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete:hover {
    background-color: #b91c1c;
}

.btn-delete:active {
    transform: scale(0.95);
}
