/* ==========================================================================
   Windows 98/2000 Retro UI Theme Stylesheet
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --win-face: #c0c0c0;
    --win-shadow-dark: #808080;
    --win-shadow-darkest: #0a0a0a;
    --win-shadow-light: #dfdfdf;
    --win-shadow-lightest: #ffffff;
    --win-title-blue-start: #000080;
    --win-title-blue-end: #1084d0;
    --win-desktop-bg: #008080;
    --win-font: 'Dotum', 'Gulim', 'Apple SD Gothic Neo', 'Malgun Gothic', 'MS Sans Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--win-desktop-bg);
    font-family: var(--win-font);
    font-size: 12px;
    color: #000000;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    user-select: none;
    display: flex;
    flex-direction: column;
}

/* AI Thinking Cursor State */
.wait-cursor,
.wait-cursor * {
    cursor: wait !important;
}

/* 2. Desktop Environment */
.desktop {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 0;
    width: 100vw;
    position: relative;
    padding-bottom: 28px; /* Room for taskbar */
    overflow: hidden;
}

/* Desktop Icons Layout */
.desktop-icons {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 76px;
    cursor: pointer;
    text-align: center;
}

.desktop-icon-img {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    image-rendering: pixelated;
}

.desktop-icon-label {
    color: #ffffff;
    font-size: 11px;
    text-shadow: 1px 1px 1px #000000;
    padding: 2px 4px;
    border: 1px solid transparent;
    word-break: keep-all;
}

/* Selected state for desktop icons */
.desktop-icon:active .desktop-icon-label,
.desktop-icon.selected .desktop-icon-label {
    background-color: var(--win-title-blue-start);
    border: 1px dotted #ffff00;
    text-shadow: none;
}

.desktop-icon:active .desktop-icon-img svg,
.desktop-icon.selected .desktop-icon-img svg {
    filter: brightness(0.8) sepia(1) hue-rotate(190deg) saturate(5); /* Retro blue tint overlay */
}

/* 3. 3D Borders & Windows Elements */
.window {
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
    padding: 3px;
    width: 880px;
    height: 580px;
    max-width: 98vw;
    max-height: calc(100vh - 40px);
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

/* 3D Border Containers */
.inset-container {
    background-color: #ffffff;
    border: 1px solid;
    border-color: var(--win-shadow-dark) var(--win-shadow-lightest) var(--win-shadow-lightest) var(--win-shadow-dark);
    box-shadow: inset 1px 1px var(--win-shadow-darkest), inset -1px -1px var(--win-shadow-light);
    box-sizing: border-box;
}

.outset-container {
    background-color: var(--win-face);
    border: 1px solid;
    border-color: var(--win-shadow-lightest) var(--win-shadow-dark) var(--win-shadow-dark) var(--win-shadow-lightest);
    box-shadow: inset 1px 1px var(--win-shadow-light), inset -1px -1px var(--win-shadow-darkest);
    box-sizing: border-box;
}

/* Fieldset Panel (Win98 style panel with heading) */
.win-panel {
    border: 1px solid var(--win-shadow-dark);
    box-shadow: 1px 1px 0 var(--win-shadow-lightest), inset 1px 1px 0 var(--win-shadow-lightest);
    padding: 12px 10px 10px 10px;
    margin-top: 8px;
    position: relative;
    background-color: var(--win-face);
}

.panel-header {
    position: absolute;
    top: -8px;
    left: 8px;
    background-color: var(--win-face);
    padding: 0 4px;
    font-weight: bold;
    font-size: 12px;
}

/* Title Bar styling */
.title-bar {
    background: linear-gradient(90deg, var(--win-title-blue-start), var(--win-title-blue-end));
    color: var(--win-shadow-lightest);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px 2px 4px;
    height: 20px;
    font-weight: bold;
}

.title-bar-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.window-mini-icon {
    width: 16px;
    height: 16px;
    image-rendering: pixelated;
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.control-btn {
    width: 16px;
    height: 14px;
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
}

.control-btn:active {
    box-shadow: 
        inset 1px 1px var(--win-shadow-darkest), 
        inset 2px 2px var(--win-shadow-dark), 
        inset -1px -1px var(--win-shadow-lightest), 
        inset -2px -2px var(--win-shadow-light);
    padding: 1px 0 0 1px;
}

#win-btn-minimize::before {
    content: "";
    width: 6px;
    height: 2px;
    background-color: #000000;
    margin-top: 6px;
}

#win-btn-maximize::before {
    content: "";
    width: 8px;
    height: 7px;
    border: 1px solid #000000;
    border-top: 2px solid #000000;
}

#win-btn-close::before {
    content: "✕";
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: bold;
    color: #000000;
}

/* Menu Bar styling */
.menu-bar {
    display: flex;
    background-color: var(--win-face);
    padding: 2px 6px;
    border-bottom: 1px solid var(--win-shadow-dark);
    gap: 4px;
}

.menu-item {
    padding: 2px 6px;
    cursor: pointer;
    font-size: 11px;
}

.menu-item:hover {
    background-color: var(--win-title-blue-start);
    color: #ffffff;
}

.menu-item u {
    text-decoration: underline;
}

/* Window Client Area */
.window-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px;
    background-color: var(--win-face);
    overflow: hidden;
}

/* 4. Common Widgets: Buttons & Inputs */
.win-btn {
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
    padding: 4px 10px;
    font-family: var(--win-font);
    font-size: 12px;
    color: #000000;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.win-btn:active {
    box-shadow: 
        inset 1px 1px var(--win-shadow-darkest), 
        inset 2px 2px var(--win-shadow-dark), 
        inset -1px -1px var(--win-shadow-lightest), 
        inset -2px -2px var(--win-shadow-light);
    padding: 5px 9px 3px 11px; /* Tactile 1px shift */
}

.win-btn:focus {
    outline: 1px dotted #000000;
    outline-offset: -4px;
}

/* Action highlight button (blue-dotted border default in win98) */
.win-btn.highlight-btn {
    outline: 1px dotted #000000;
    outline-offset: -3px;
    font-weight: bold;
}

.win-input {
    font-family: var(--win-font);
    font-size: 12px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid;
    border-color: var(--win-shadow-dark) var(--win-shadow-lightest) var(--win-shadow-lightest) var(--win-shadow-dark);
    box-shadow: inset 1px 1px var(--win-shadow-darkest), inset -1px -1px var(--win-shadow-light);
    padding: 4px 6px;
    outline: none;
}

.win-input:focus {
    background-color: #ffffff;
}

/* 5. Screens Layout */
.screen-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.screen-panel.hidden {
    display: none !important;
}

/* 5.1 Lobby Layout */
.lobby-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 8px;
    height: 100%;
}

.lobby-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.room-list-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.list-container {
    flex: 1;
    overflow-y: auto;
    background-color: #ffffff;
}

/* Rooms Table style */
.rooms-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.rooms-table th {
    background-color: var(--win-face);
    color: #000000;
    font-weight: normal;
    padding: 4px 8px;
    border: 1px solid;
    border-color: var(--win-shadow-lightest) var(--win-shadow-dark) var(--win-shadow-dark) var(--win-shadow-lightest);
    box-shadow: inset 1px 1px var(--win-shadow-light), inset -1px -1px var(--win-shadow-darkest);
    position: sticky;
    top: 0;
    z-index: 2;
    font-size: 11px;
}

.rooms-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--win-shadow-light);
    font-size: 12px;
}

.room-row {
    cursor: pointer;
}

.room-row:hover {
    background-color: #f0f0f0;
}

.room-row.selected {
    background-color: var(--win-title-blue-start) !important;
    color: #ffffff !important;
}

.col-num { width: 50px; }
.col-title { width: auto; }
.col-opponent { width: 140px; }
.col-status { width: 70px; }

.status-waiting {
    color: #008000;
    font-weight: bold;
}

.status-playing {
    color: #ff0000;
    font-weight: bold;
}

.room-row.selected .status-waiting,
.room-row.selected .status-playing {
    color: #ffffff !important;
}

/* Chat Panel */
.chat-panel {
    height: 180px;
    display: flex;
    flex-direction: column;
}

.chat-area {
    flex: 1;
    padding: 6px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-message {
    line-height: 1.4;
    word-break: break-all;
}

.chat-time {
    color: #808080;
    font-size: 10px;
    margin-right: 4px;
}

.chat-sender {
    font-weight: bold;
}

.user-sender {
    color: #0000ff;
}

.opponent-sender {
    color: #8b0000;
}

.system-msg {
    color: #008080;
    font-style: italic;
}

.chat-inputs {
    display: flex;
    margin-top: 6px;
    gap: 6px;
}

.chat-inputs input {
    flex: 1;
}

.chat-inputs button {
    width: 80px;
}

/* Lobby Side Panel */
.lobby-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-panel {
    flex: 1;
}

.user-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}

.avatar-frame {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.pixelated-avatar {
    image-rendering: pixelated;
    width: 64px;
    height: 64px;
}

.user-info-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 6px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    border-bottom: 1px dotted var(--win-shadow-dark);
    padding-bottom: 2px;
}

.info-label {
    color: #404040;
}

.info-val {
    font-weight: bold;
}

.rank-val {
    color: var(--win-title-blue-start);
}

.actions-panel {
    height: 120px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    height: 100%;
}

.btn-action {
    width: 100%;
    padding: 8px;
    font-weight: bold;
}

/* 5.2 Game Layout */
.game-grid {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 8px;
    height: 100%;
}

.game-side-left, .game-side-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
    min-width: 0;
    overflow: visible;
}

.player-panel {
    height: 220px;
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.player-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.player-name {
    font-weight: bold;
    font-size: 13px;
    color: #000;
}

.player-rank {
    font-weight: bold;
    color: var(--win-title-blue-start);
}

.player-record {
    font-size: 11px;
    color: #555555;
}

.stone-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 11px;
    background-color: var(--win-shadow-light);
    padding: 2px;
    border: 1px solid var(--win-shadow-dark);
}

.stone {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #000000;
}

.black-stone {
    background-color: #000000;
}

.white-stone {
    background-color: #ffffff;
}

.game-controls {
    height: 160px;
    flex: 0 0 160px;
}

.control-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.ctrl-btn {
    width: 100%;
    padding: 6px;
}

.talk-panel {
    height: 160px;
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-speech {
    height: 96px;
    margin: auto 0;
    padding: 8px;
    background-color: #ffffff;
    overflow-y: auto;
    font-family: var(--win-font);
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-speech p {
    margin: 0;
    font-style: italic;
    color: #555555;
    text-align: center;
    width: 100%;
    word-break: keep-all;
}

/* Game Board Center Layout */
.game-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.board-frame {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    max-width: 100%;
}

.board-status-display {
    background-color: #000000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    padding: 6px 10px;
    height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    text-shadow: 0 0 4px #00ff00;
    border: 1px solid;
    border-color: var(--win-shadow-dark) var(--win-shadow-lightest) var(--win-shadow-lightest) var(--win-shadow-dark);
    box-shadow: inset 1px 1px var(--win-shadow-darkest), inset -1px -1px var(--win-shadow-light);
}

.canvas-wrapper {
    background-color: #dfb175; /* Retro wood board tone */
    padding: 8px;
    cursor: crosshair;
    max-width: 100%;
}

#omok-canvas {
    background-color: #dfb175;
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
}

/* 6. Status Bar */
.status-bar {
    display: flex;
    height: 20px;
    margin-top: auto;
    gap: 2px;
    background-color: var(--win-face);
    padding-top: 2px;
    border-top: 1px solid var(--win-shadow-dark);
}

.status-pane {
    padding: 2px 6px;
    font-size: 11px;
    background-color: var(--win-face);
    border: 1px solid;
    border-color: var(--win-shadow-dark) var(--win-shadow-lightest) var(--win-shadow-lightest) var(--win-shadow-dark);
    box-shadow: inset 1px 1px var(--win-shadow-darkest), inset -1px -1px var(--win-shadow-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#status-left {
    flex: 2;
}

#status-middle {
    flex: 1;
    text-align: center;
}

#status-right {
    flex: 1;
    text-align: right;
}

/* 7. Taskbar Styling */
.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background-color: var(--win-face);
    border-top: 2px solid var(--win-shadow-lightest);
    box-shadow: inset 0 1px 0 var(--win-shadow-light);
    display: flex;
    align-items: center;
    padding: 2px;
    z-index: 10;
    gap: 2px;
}

.start-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
    height: 22px;
    padding: 2px 6px;
    cursor: pointer;
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
    outline: none;
}

.start-button:active {
    box-shadow: 
        inset 1px 1px var(--win-shadow-darkest), 
        inset 2px 2px var(--win-shadow-dark), 
        inset -1px -1px var(--win-shadow-lightest), 
        inset -2px -2px var(--win-shadow-light);
    padding: 3px 5px 1px 7px;
}

.start-logo {
    width: 14px;
    height: 14px;
}

.taskbar-divider {
    width: 2px;
    height: 20px;
    background-color: var(--win-shadow-dark);
    border-right: 1px solid var(--win-shadow-lightest);
    margin: 0 4px;
}

.taskbar-windows {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.taskbar-window {
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
    height: 22px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
    max-width: 150px;
    outline: none;
}

.taskbar-window.active {
    background-color: #dfdfdf;
    background-image: 
        linear-gradient(45deg, #c0c0c0 25%, transparent 25%, transparent 75%, #c0c0c0 75%, #c0c0c0), 
        linear-gradient(45deg, #c0c0c0 25%, transparent 25%, transparent 75%, #c0c0c0 75%, #c0c0c0);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    border: 1px solid;
    border-color: var(--win-shadow-dark) var(--win-shadow-lightest) var(--win-shadow-lightest) var(--win-shadow-dark);
    box-shadow: inset 1px 1px var(--win-shadow-darkest), inset -1px -1px var(--win-shadow-light);
    font-weight: bold;
    outline: 1px dotted #000000;
    outline-offset: -3px;
}

.task-mini-icon {
    width: 14px;
    height: 14px;
    image-rendering: pixelated;
}

.system-tray {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    height: 22px;
    font-size: 11px;
    background-color: var(--win-face);
}

.tray-icon {
    width: 14px;
    height: 14px;
    image-rendering: pixelated;
}

.tray-time {
    font-weight: bold;
    margin-left: 2px;
}

/* 8. Scrollbar Customization for Windows 98 Look */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background-color: #dfdfdf;
    background-image: 
        linear-gradient(45deg, #c0c0c0 25%, transparent 25%, transparent 75%, #c0c0c0 75%, #c0c0c0), 
        linear-gradient(45deg, #c0c0c0 25%, transparent 25%, transparent 75%, #c0c0c0 75%, #c0c0c0);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--win-face);
    border: 1px solid var(--win-face);
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest);
}

::-webkit-scrollbar-thumb:active {
    box-shadow: 
        inset 1px 1px var(--win-shadow-darkest), 
        inset 2px 2px var(--win-shadow-dark), 
        inset -1px -1px var(--win-shadow-lightest), 
        inset -2px -2px var(--win-shadow-light);
}

::-webkit-scrollbar-corner {
    background-color: var(--win-face);
}

/* 9. Modal UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-window {
    width: 320px;
    height: auto;
    min-height: 140px;
    box-shadow: 
        inset 1px 1px var(--win-shadow-lightest), 
        inset -1px -1px var(--win-shadow-dark), 
        inset 2px 2px var(--win-shadow-light), 
        inset -2px -2px var(--win-shadow-darkest),
        4px 4px 10px rgba(0,0,0,0.5); /* extra drop shadow */
    animation: modalPop 0.15s ease-out;
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-body {
    padding: 16px;
    gap: 20px;
    justify-content: space-between;
}

.modal-content {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.modal-buttons .win-btn {
    min-width: 70px;
}

/* 10. Ad Containers */
.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #005858;
    padding: 10px 0;
    flex-shrink: 0;
}

.ad-slot {
    width: 728px;
    max-width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder styling - remove when real AdSense is inserted */
.ad-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
}

/* 11. Game Setup Modal */
.setup-fieldset {
    border: 1px solid var(--win-shadow-dark);
    box-shadow: 1px 1px 0 var(--win-shadow-lightest), inset 1px 1px 0 var(--win-shadow-lightest);
    padding: 10px 12px 8px;
    margin: 0;
}

.setup-fieldset legend {
    font-weight: bold;
    font-size: 12px;
    padding: 0 4px;
}

.setup-radio {
    display: block;
    font-size: 12px;
    padding: 3px 0;
    cursor: pointer;
}

.setup-radio input[type="radio"] {
    margin-right: 6px;
    cursor: pointer;
}
