:root {
    --bg-dark: #241b3d;
    --bg-light: #3b2a5e;
    --text-main: #fff9f2;
    --text-muted: #b8a9d9;
    --accent: #FFB627;
    --coral: #FF6B6B;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll; 
    overflow-x: hidden;
    overscroll-behavior: none; 
    background: #241b3d;
    background-image: radial-gradient(circle at top, #3b2a5e 0%, #241b3d 100%);
    color: var(--text-main);
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    min-height: 60px;
    flex-shrink: 0;
    padding: 0 20px;
    box-sizing: border-box;
    background: rgba(36, 27, 61, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-side.right {
    justify-content: flex-end;
}

h1 {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(20px, 5vw, 26px);
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.header-title-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    animation: logoSway 3.2s ease-in-out infinite;
    transform-origin: 50% 55%;
}

@keyframes logoSway {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.settings-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}
.settings-btn:hover { color: #fff; }

.game-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 48px; 
    min-height: 48px;
    flex-shrink: 0;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.stat-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: initial; 
}

.stat-group.left, .stat-group.center, .stat-group.right { 
    justify-content: center; 
}

.game-stats-bar span {
    color: #fff;
    font-size: 15px;
    transition: color 0.3s;
}

.game-stats-bar.score-highlight span#score-display {
    color: #34d399;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

#btn-study-exit-header {
    background: var(--accent);
    color: #000;
    border: 1px solid transparent;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    animation: pulseBtn 2s infinite;
    display: none;
    font-family: 'Nunito', sans-serif;
}

/* Mobile Post-Game Overrides */
@media (max-width: 600px) {
    .game-stats-bar {
        gap: 10px;
    }
    .game-stats-bar.post-game-mode .hide-on-mobile-end {
        display: none !important;
    }
    .game-stats-bar.post-game-mode {
        gap: 10px;
    }
    #btn-study-exit-header {
        padding: 6px 10px;
        font-size: 10px;
    }
}

.pulse-btn { animation: pulseBtn 2s infinite !important; }

@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 182, 39,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 182, 39,0.6); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 182, 39,0.2); }
}

.redemption-badge {
    display: none;
    align-items: center;
    gap: 6px;
    background: rgba(255, 182, 39, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 182, 39, 0.3);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
}
.redemption-badge.show { display: inline-flex; }
.redemption-badge span { color: var(--accent) !important; }

.floating-score {
    position: absolute;
    left: 50%;
    top: 25%;
    color: #34d399;
    font-weight: 800;
    font-size: 32px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 0);
    animation: floatUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    z-index: 100;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 0 20px rgba(52, 211, 153, 0.6);
}

@keyframes floatUp {
    0% { opacity: 0; transform: translate(-50%, 20px) scale(0.5); }
    15% { opacity: 1; transform: translate(-50%, 0px) scale(1.4); }
    80% { opacity: 1; transform: translate(-50%, -40px) scale(1.1); }
    100% { opacity: 0; transform: translate(-50%, -60px) scale(1); }
}

.perfect-flare { animation: flareUp 1.2s cubic-bezier(0.1, 0.9, 0.2, 1) forwards; }

@keyframes flareUp {
    0% { 
        box-shadow: inset 0 0 80px rgba(52, 211, 153, 0.9), 0 0 40px rgba(52, 211, 153, 0.6); 
        border-color: rgba(52, 211, 153, 1); 
        background: radial-gradient(circle, rgba(36,27,61,0.95) 0%, rgba(20,50,40,1) 100%);
    }
    30% { box-shadow: inset 0 0 40px rgba(52, 211, 153, 0.6), 0 0 20px rgba(52, 211, 153, 0.3); }
    100% { 
        box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5); 
        border-color: rgba(255, 255, 255, 0.08); 
        background: radial-gradient(circle, rgba(36,27,61,0.95) 0%, rgba(36,27,61,1) 100%);
    }
}

.main-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 25px;
    gap: 20px; 
    padding-bottom: 40px;
}

@media (min-width: 900px) {
    .main-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    .main-layout.video-active { gap: 30px; }
}

.game-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 550px;
    flex: 1;
    position: relative;
}

/* --- CONTEXT AREA: flat, no card, no side spine --- */
.wheel-context-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    z-index: 30;
    width: 100%;
    max-width: 340px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testament-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
}
.testament-kicker .dot { width: 7px; height: 7px; border-radius: 50%; }
.kicker-ot { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.kicker-ot .dot { background: #f59e0b; }
.kicker-nt { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.kicker-nt .dot { background: #38bdf8; }

.context-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.context-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    width: 100%;
}

.context-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.context-body {
    font-size: 13px;
    line-height: 1.5;
    color: #cbd5e1;
}

.bookshelf-wrapper {
    background: transparent;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}
.bookshelf-container {
    display: flex;
    overflow-x: auto;
    align-items: flex-end;
    border-bottom: 6px solid #475569;
    gap: 2px;
    scroll-behavior: smooth;
}
.bookshelf-container::-webkit-scrollbar { height: 6px; }
.bookshelf-container::-webkit-scrollbar-thumb { background: #64748b; border-radius: 4px; }

.book-spine {
    width: 24px; min-width: 24px; max-width: 24px;
    height: 90px; 
    border-radius: 3px 3px 0 0;
    position: relative;
    box-shadow: inset -2px 0 5px rgba(0,0,0,0.3), inset 2px 0 3px rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-top: 3px solid rgba(0,0,0,0.4);
    border-bottom: 3px solid rgba(0,0,0,0.4);
}

.book-spine::before, .book-spine::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.book-spine::before { top: 15px; }
.book-spine::after { bottom: 15px; }

.spine-label {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 10px;
    font-family: 'Baloo 2', sans-serif;
    color: rgba(255,255,255,0.8);
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.5px;
}

.book-sticker {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
    background: #3b2a5e;
    padding: 3px 5px;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Nunito', sans-serif;
}

@media (max-width: 899px) { .wheel-context-box { margin-top: 15px; } }
@media (min-width: 900px) {
    .wheel-context-box {
        position: absolute;
        left: calc(100% + 25px);
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }
}

.video-column {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    flex: 1;
    gap: 15px;
    animation: fadeIn 0.4s ease;
}
.video-column.show { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    cursor: crosshair;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

.center-ui {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 61%; 
    height: 61%; 
    perspective: 1000px;
    z-index: 10;
    pointer-events: none; 
}

.center-ui-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 50%;
}

.center-ui-inner.flipped { transform: rotateY(180deg); }

.center-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36,27,61,0.95) 0%, rgba(36,27,61,1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
    padding: 8% 10%; 
    box-sizing: border-box;
    overflow-y: auto; 
    overflow-x: hidden;
    touch-action: pan-y;
}

.center-face::-webkit-scrollbar { width: 4px; }
.center-face::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 4px; }

.intro-active .center-front { justify-content: center; padding: 0; }
.intro-active .button-group, .intro-active .feedback, .intro-active .btn-hint-flip { display: none !important; }

.center-back {
    transform: rotateY(180deg);
    background: radial-gradient(circle, rgba(59,42,94,0.95) 0%, rgba(26,19,46,1) 100%);
    border-color: rgba(255, 182, 39, 0.3);
    justify-content: center; 
}

.action-required .center-front {
    background: radial-gradient(circle, rgba(255, 182, 39, 0.25) 0%, rgba(36,27,61,1) 80%);
    border-color: rgba(255, 182, 39, 0.5);
    box-shadow: inset 0 0 40px rgba(255, 182, 39, 0.15), 0 10px 30px rgba(0,0,0,0.6);
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0% { box-shadow: inset 0 0 40px rgba(255, 182, 39, 0.15), 0 10px 30px rgba(0,0,0,0.6); }
    50% { box-shadow: inset 0 0 60px rgba(255, 182, 39, 0.35), 0 10px 40px rgba(0,0,0,0.7); }
    100% { box-shadow: inset 0 0 40px rgba(255, 182, 39, 0.15), 0 10px 30px rgba(0,0,0,0.6); }
}

.target-prompt {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
    transition: color 0.3s, opacity 0.2s;
    max-width: 100%;
    word-wrap: break-word;
}

.target-book {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(13px, 4vw, 24px); 
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
    white-space: nowrap; 
    max-width: 100%;
    transition: font-size 0.3s, color 0.3s, opacity 0.2s;
}

.target-book.intro-mode {
    font-size: clamp(26px, 7vw, 42px);
    color: #fff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    white-space: normal;
}

.pulse-anim { animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; text-shadow: 0 0 20px rgba(255, 182, 39, 0.4); }
    100% { transform: scale(1); opacity: 1; }
}

.feedback {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    max-width: 95%;
    color: #cbd5e1;
    width: 100%;
}

.feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.button-group {
    display: flex;
    flex-direction: column; 
    gap: 6px;
    margin-top: 8px;
    pointer-events: auto;
}

.btn-action {
    background: var(--accent);
    color: #2b1a00;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 11px;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 0 #C68D1E, 0 8px 16px rgba(255, 182, 39, 0.3);
    display: none;
    transition: transform 0.1s, box-shadow 0.1s, background 0.2s;
}

.btn-action.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-action:active { transform: translateY(3px); box-shadow: 0 1px 0 #C68D1E, 0 2px 8px rgba(255, 182, 39, 0.3); }
.btn-action.secondary:active { box-shadow: 0 1px 0 rgba(0,0,0,0.3); }

/* "New Here?" tour cards on round 1 */
.new-here-caption {
    margin-top: 14px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}
.new-here-cards {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
}
.tour-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 6px;
    border-radius: 14px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    line-height: 1.25;
    transition: transform 0.1s, box-shadow 0.1s, background 0.2s;
}
.tour-card i { font-size: 15px; margin-bottom: 1px; }
.tour-card-preview {
    flex: 1.3;
    background: var(--accent);
    color: #2b1a00;
    border: none;
    box-shadow: 0 4px 0 #C68D1E, 0 8px 16px rgba(255, 182, 39, 0.35);
    animation: pulseBtn 2.4s ease-in-out 4;
}
.tour-card-preview:active { transform: translateY(3px); box-shadow: 0 1px 0 #C68D1E, 0 2px 8px rgba(255, 182, 39, 0.3); animation: none; }
.tour-card-video {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #f43f5e;
}
.tour-card-video:active { transform: scale(0.96); }
.btn-action.show { display: block; }

.btn-hint-flip {
    position: absolute;
    bottom: 8%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
    display: none;
}
.btn-hint-flip:hover { color: var(--accent); }
.btn-hint-flip.show { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
}
.btn-hint-flip.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.btn-exit-tour {
    position: absolute;
    bottom: 8%;
    background: rgba(36, 27, 61, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 11px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
    display: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 100;
}
.btn-exit-tour:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(59, 42, 94, 0.9);
}
.btn-exit-tour.show {
    display: flex;
    align-items: center;
    gap: 6px;
}

.study-breadcrumb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}
.study-breadcrumb-btn:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); }
.study-breadcrumb-btn:active { transform: scale(0.96); }

.wheel-tooltip {
    position: absolute;
    background: rgba(36, 27, 61, 0.9);
    border: 1px solid var(--accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.15s;
    transform: translate(-50%, -150%);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.wheel-tooltip.show { opacity: 1; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(36, 27, 61, 0.85); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px; box-sizing: border-box; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card { background: #3b2a5e; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 25px; max-width: 400px; width: 100%; box-shadow: 0 20px 50px rgba(0,0,0,0.8); transform: scale(0.95); transition: transform 0.3s ease; display: flex; flex-direction: column; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-overlay.active .modal-card { transform: scale(1); }

.modal-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.modal-title { font-family: 'Baloo 2', sans-serif; font-size: 20px; color: #fff; margin: 0; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.modal-title .logo-icon { width: 20px; height: 20px; }

.modal-close-btn { background: transparent; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 5px; transition: color 0.2s; }
.modal-close-btn:hover { color: #fff; }

.modal-save, .modal-cancel { padding: 12px 20px; border-radius: 14px; cursor: pointer; font-weight: 600; font-size: 14px; font-family: 'Nunito', sans-serif; transition: background 0.2s; border: none; flex: 1; }
.modal-cancel { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1); }
.modal-cancel:hover { background: rgba(255, 255, 255, 0.1); }
.modal-save { background: var(--accent); color: #000; }
.modal-save:hover { background: #e2c050; }

.radio-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 15px; }
.radio-label { display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,0.03); padding: 12px; border-radius: 14px; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); transition: all 0.2s; }
.radio-label:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.radio-label:has(input:checked) { background: rgba(255, 182, 39, 0.1); border-color: var(--accent); }
input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; margin-top: 1px; cursor: pointer; }
