* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Score display */
.score-display {
    background: linear-gradient(135deg, rgba(79,172,254,0.15), rgba(0,242,254,0.1));
    border: 1px solid rgba(79,172,254,0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: #4facfe;
    font-size: 1.1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.quiz-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.question-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.quiz-body {
    margin-bottom: 30px;
}

.question {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.answer-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateX(5px);
}

.answer-btn.correct {
    background: rgba(40, 167, 69, 0.3);
    border-color: #28a745;
}

.answer-btn.incorrect {
    background: rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
}

.answer-btn:disabled {
    cursor: default;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score {
    color: #4facfe;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

/* Selection screen */
.selection {
    max-width: 780px;
    width: 92%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    text-align: center;
    color: #eaf6ff;
}

.quiz-list {
    display: grid;
    grid-template-columns: 1fr; /* stack quizzes vertically */
    gap: 12px;
    margin-top: 18px;
    align-items: stretch;
}

.quiz-card {
    background: linear-gradient(180deg, rgba(10,24,48,0.6), rgba(6,18,36,0.6));
    border-radius: 12px;
    border: 1px solid rgba(79,172,254,0.06);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-card-body { text-align: left; }
.quiz-name { font-weight: 700; color: #dff4ff; margin-bottom: 4px; }
.quiz-meta { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.quiz-card-actions { display:flex; gap:8px; }
.start-quiz-btn { padding:8px 12px; border-radius:8px; font-weight:600; }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal {
    background: linear-gradient(180deg, rgba(10, 24, 48, 0.95), rgba(6, 18, 36, 0.95));
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 16px;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
}
#modal-cancel {
    background: rgba(10, 24, 48, 0.6);
    border: 1px solid rgba(79,172,254,0.12);
    color: #dff4ff;
}

#modal-cancel:hover {
    background: rgba(10, 24, 48, 0.68);
}

/* Use three blue tones for modal actions to match the app design */
#modal-ok {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #092033;
}

#modal-ok-no-show {
    background: linear-gradient(90deg, #2b8cff, #4facfe);
    color: #092033;
}

/* Remove glowing/hover effects for modal buttons so they blend with design */
.modal .btn {
    box-shadow: none;
    transform: none;
}

.modal .btn:hover {
    box-shadow: none;
    transform: none;
    filter: brightness(0.95);
}

/* Completed Badge */
.completed-badge {
    background: linear-gradient(90deg, #28a745, #20c997);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Tutorial Modal Styles */
.tutorial-modal {
    max-width: 500px;
}

.tutorial-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.tutorial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tutorial-dot.active {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    transform: scale(1.2);
}

.tutorial-actions {
    flex-direction: row !important;
    justify-content: space-between;
}

.tutorial-actions .btn {
    width: auto;
    flex: 1;
}

/* Score Display Container */
.score-display-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

/* Auth / Login Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.auth-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-input:focus {
    border-color: rgba(79, 172, 254, 0.5);
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4facfe;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2em;
}

.auth-switch {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

.auth-switch a {
    color: #4facfe;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Quiz Footer Layout */
.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    gap: 10px;
}

.footer-right {
    display: flex;
    gap: 15px;
}

#exit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

#exit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 500px) {
    .quiz-container {
        padding: 25px;
    }
    
    .quiz-header h1 {
        font-size: 2rem;
    }
    
    .question {
        font-size: 1.1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Clickable score display */
.score-display.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.score-display.clickable:hover {
    background: linear-gradient(135deg, rgba(79,172,254,0.25), rgba(0,242,254,0.2));
    border-color: rgba(79,172,254,0.5);
    transform: translateY(-2px);
}

/* Settings Modal */
.settings-modal {
    max-width: 400px;
}

.settings-form {
    text-align: left;
    margin-bottom: 20px;
}

.settings-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.settings-success {
    color: #28a745;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2em;
}

/* History Modal */
.history-modal {
    max-width: 600px;
    max-height: 80vh;
}

.history-content {
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 20px;
}

.history-empty {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 30px;
}

.history-quiz {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 172, 254, 0.15);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
}

.history-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.history-quiz-name {
    color: #4facfe;
    font-size: 1.1rem;
    font-weight: 600;
}

.history-quiz-points {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.history-quiz-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.history-questions {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.history-questions.expanded {
    display: flex;
}

.history-question {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.history-question-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    flex: 1;
}

.history-question-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.history-question-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.history-question-points {
    font-size: 0.8rem;
    font-weight: 600;
}

.history-question-points.correct {
    color: #28a745;
}

.history-question-points.incorrect {
    color: #dc3545;
}

.history-toggle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.history-toggle.expanded {
    transform: rotate(180deg);
}

/* ========== Custom Quiz Section ========== */
.custom-quizzes-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 400;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Create Quiz Modal */
.create-quiz-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.create-quiz-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.questions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.question-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.question-number {
    color: #4facfe;
    font-weight: 600;
    font-size: 0.9rem;
}

.remove-question-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.remove-question-btn:hover {
    background: rgba(220, 53, 69, 0.4);
}

.question-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.question-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.answer-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.answer-input-wrapper input[type="text"] {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
}

.answer-input-wrapper input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.answer-input-wrapper input[type="radio"] {
    accent-color: #28a745;
    width: 16px;
    height: 16px;
}

.correct-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* Warning styles */
.warning-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.warning-list {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 15px 20px;
    line-height: 1.8;
}

.warning-list li {
    margin-bottom: 5px;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-color: #dc3545;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

/* Custom quiz badge */
.custom-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ffc107;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.no-points-badge {
    background: rgba(108, 117, 125, 0.2);
    border: 1px solid rgba(108, 117, 125, 0.4);
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 8px;
}

.quiz-creator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 4px;
}

.delete-quiz-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.delete-quiz-btn:hover {
    background: rgba(220, 53, 69, 0.4);
}

/* Search input */
.search-container {
    flex: 0 0 auto;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4facfe;
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Admin button */
.btn-admin {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-color: #9b59b6;
}

.btn-admin:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
}

/* Admin modal */
.admin-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.admin-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-tab:hover {
    background: rgba(255, 255, 255, 0.15);
}

.admin-tab.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #1a1a2e;
    font-weight: 600;
    border-color: transparent;
}

.admin-list {
    max-height: 400px;
    overflow-y: auto;
}

.admin-user-item,
.admin-quiz-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-user-info,
.admin-quiz-info {
    flex: 1;
}

.admin-username {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.admin-user-meta,
.admin-quiz-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.btn-ban {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-ban:hover {
    background: rgba(220, 53, 69, 0.4);
}

.btn-unban {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.4);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-unban:hover {
    background: rgba(40, 167, 69, 0.4);
}

.banned-badge {
    background: rgba(220, 53, 69, 0.3);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.admin-badge {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(142, 68, 173, 0.3));
    border: 1px solid rgba(155, 89, 182, 0.5);
    color: #9b59b6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.admin-search {
    margin-bottom: 15px;
}

.admin-search .search-input {
    width: 100%;
}
/* Wish Section Styles */
.wish-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(79, 172, 254, 0.1);
}

.wish-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.wish-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wish-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
    font-family: inherit;
}

.wish-input:focus {
    border-color: rgba(79, 172, 254, 0.5);
}

.wish-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.wish-success {
    color: #28a745;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2em;
    margin-top: 5px;
}

/* Admin Wish Item Styles */
.admin-wish-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-wish-info {
    flex: 1;
    text-align: left;
}

.admin-wish-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.admin-wish-meta strong {
    color: #4facfe;
}

.admin-wish-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.delete-wish-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.delete-wish-btn:hover {
    background: rgba(220, 53, 69, 0.4);
}