/* ==========================================================================
   WristTranslate - Standalone Smartwatch UI Stylesheet
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --bg-surface: #10141e;
    --bg-surface-light: #181d2a;
    
    --person1-color: #00d2ff;
    --person1-glow: rgba(0, 210, 255, 0.5);
    
    --person2-color: #ff007f;
    --person2-glow: rgba(255, 0, 127, 0.5);

    --accent-green: #00e676;
    --accent-orange: #ff9100;
    --accent-cyan: #00f2fe;

    --watch-chassis: #1e2330;
    --watch-chassis-border: #323a4e;
    --watch-screen-bg: #000000;

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(0, 210, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 127, 0.06) 0%, transparent 60%);
    padding: 1.5rem;
}

.watch-app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

/* Header */
.watch-app-header {
    text-align: center;
    margin-bottom: 1rem;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.brand-logo strong {
    background: linear-gradient(90deg, var(--person1-color), var(--person2-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--accent-cyan); }
.subtitle { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* ==========================================================================
   SMARTWATCH STAGE & HARDWARE FRAME
   ========================================================================== */

.watch-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0.5rem 0 1.2rem 0;
}

/* Watch Straps */
.watch-strap {
    width: 160px;
    height: 65px;
    background: linear-gradient(90deg, #181c26 0%, #2b3346 50%, #181c26 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.strap-texture {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.3) 4px, rgba(0,0,0,0.3) 8px);
}

.strap-top { border-bottom: 4px solid #0f1219; }
.strap-bottom { border-top: 4px solid #0f1219; }

/* Watch Chassis Body */
.watch-chassis {
    width: 320px;
    height: 420px;
    background: linear-gradient(145deg, #2d3648 0%, #181c26 100%);
    border-radius: 64px;
    border: 3px solid var(--watch-chassis-border);
    padding: 16px;
    position: relative;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 210, 255, 0.1),
        inset 0 2px 3px rgba(255, 255, 255, 0.25),
        inset 0 -3px 8px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

/* Hardware Crown Dial */
.watch-hardware-crown {
    position: absolute;
    right: -16px;
    top: 90px;
    width: 16px;
    height: 60px;
    background: linear-gradient(180deg, #47536d 0%, #202636 50%, #47536d 100%);
    border-radius: 0 8px 8px 0;
    border-left: 2px solid #0e1117;
    cursor: pointer;
    box-shadow: 3px 2px 10px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.crown-ridges {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.5) 3px, rgba(0,0,0,0.5) 6px);
}

.watch-hardware-crown:hover {
    filter: brightness(1.25);
}

.watch-hardware-btn {
    position: absolute;
    right: -12px;
    top: 200px;
    width: 12px;
    height: 75px;
    background: linear-gradient(180deg, #333d52 0%, #1a1e2b 100%);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* OLED Display */
.watch-oled-screen {
    width: 100%;
    height: 100%;
    background: var(--watch-screen-bg);
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95);
    position: relative;
}

/* Top Bar */
.watch-top-bar {
    height: 32px;
    padding: 6px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.watch-clock {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #fff;
}

.watch-status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}
.watch-status-icons i { cursor: pointer; transition: var(--transition); }
.watch-status-icons i:hover, .icon-active { color: var(--accent-cyan); }
.text-green { color: var(--accent-green); }

/* Screen Body */
.watch-screen-body {
    flex: 1;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

/* Language Pill Row */
.watch-lang-pill-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

.lang-tag {
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.lang-tag:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.tag-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-left: 2px;
}

.p1-tag.active {
    background: rgba(0, 210, 255, 0.2);
    color: var(--person1-color);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    border-color: rgba(0, 210, 255, 0.4);
}

.p2-tag.active {
    background: rgba(255, 0, 127, 0.2);
    color: var(--person2-color);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
    border-color: rgba(255, 0, 127, 0.4);
}

.swap-langs-btn {
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 2px 6px;
    transition: var(--transition);
}
.swap-langs-btn:hover { color: #fff; transform: rotate(180deg); }

/* TURN STATUS BANNER */
.turn-status-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid var(--person1-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.turn-status-banner.turn-p2 {
    background: rgba(255, 0, 127, 0.12);
    border-color: var(--person2-color);
}

.turn-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--person1-color);
    box-shadow: 0 0 8px var(--person1-color);
}
.turn-status-banner.turn-p2 .turn-dot {
    background: var(--person2-color);
    box-shadow: 0 0 8px var(--person2-color);
}

/* ==========================================================================
   CENTERED BIG CIRCULAR SPEAK BUTTON STYLING
   ========================================================================== */

.watch-center-mic-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
}

.watch-big-circle-mic-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #0088ff, #00d2ff);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 
        0 0 30px var(--person1-glow),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    z-index: 5;
}

.watch-big-circle-mic-btn.turn-p2-btn {
    background: linear-gradient(135deg, #d6006e, #e100ff);
    box-shadow: 
        0 0 30px var(--person2-glow),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.watch-big-circle-mic-btn:hover {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.mic-icon-large {
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.circle-btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Pulsing Outer Glow Rings for Active Mic */
.mic-pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--person1-color);
    opacity: 0;
    pointer-events: none;
}

.watch-big-circle-mic-btn.listening {
    animation: bigMicPulse 1.2s infinite ease-in-out;
}

.watch-big-circle-mic-btn.listening ~ .ring-1 {
    animation: pulseExpand 1.5s infinite ease-out;
}

.watch-big-circle-mic-btn.listening ~ .ring-2 {
    animation: pulseExpand 1.5s infinite ease-out 0.5s;
}

@keyframes bigMicPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); filter: brightness(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulseExpand {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Soundwave Visualizer (Microphone Voice Volume) */
.watch-soundwave-container {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 1px 0;
    width: 100%;
}

.wave-bar {
    width: 4px;
    height: 4px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: height 0.1s ease, background 0.2s ease;
}

.watch-soundwave-container.active .wave-bar {
    background: var(--person1-color);
    animation: wavePulse 0.5s ease-in-out infinite alternate;
}
.watch-soundwave-container.active-p2 .wave-bar {
    background: var(--person2-color);
}

.watch-soundwave-container.active .bar-1 { animation-delay: 0.05s; }
.watch-soundwave-container.active .bar-2 { animation-delay: 0.15s; }
.watch-soundwave-container.active .bar-3 { animation-delay: 0.25s; }
.watch-soundwave-container.active .bar-4 { animation-delay: 0.35s; }
.watch-soundwave-container.active .bar-5 { animation-delay: 0.2s; }
.watch-soundwave-container.active .bar-6 { animation-delay: 0.1s; }
.watch-soundwave-container.active .bar-7 { animation-delay: 0.3s; }

@keyframes wavePulse {
    0% { height: 4px; }
    100% { height: 20px; }
}

/* Main Speech & Translation Display Cards */
.watch-text-display {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    max-height: 110px;
    padding-right: 2px;
}
.watch-text-display::-webkit-scrollbar { display: none; }

.speech-card {
    padding: 7px 9px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    line-height: 1.3;
    transition: var(--transition);
}

.speech-card.hidden {
    display: none !important;
}

.original-card {
    background: rgba(0, 210, 255, 0.1);
    border-left: 3px solid var(--person1-color);
}

.translated-card {
    background: rgba(255, 0, 127, 0.1);
    border-left: 3px solid var(--person2-color);
}

.card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.card-text {
    color: #fff;
    font-weight: 500;
}

/* Status Footer */
.watch-status-footer {
    height: 22px;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    z-index: 10;
}

/* ==========================================================================
   DIRECT ON-WATCH LANGUAGE PICKER & HISTORY OVERLAYS
   ========================================================================== */

.watch-picker-overlay {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    bottom: 22px;
    background: rgba(8, 10, 15, 0.96);
    backdrop-filter: blur(12px);
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-picker-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.picker-header span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-close-picker {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picker-list, .history-watch-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 2px;
    max-height: calc(100% - 40px);
    overscroll-behavior: contain;
}
.picker-list::-webkit-scrollbar, .history-watch-list::-webkit-scrollbar { width: 3px; }
.picker-list::-webkit-scrollbar-thumb, .history-watch-list::-webkit-scrollbar-thumb { background: rgba(0, 224, 255, 0.3); border-radius: 3px; }

.picker-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.picker-item:hover, .picker-item.selected {
    background: rgba(0, 242, 254, 0.15);
    border-color: var(--accent-cyan);
    color: #fff;
}

/* History Item inside Watch Screen */
.history-watch-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.history-watch-item.speaker-p1 { border-left: 3px solid var(--person1-color); }
.history-watch-item.speaker-p2 { border-left: 3px solid var(--person2-color); }

.watch-hist-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.62rem;
}

.watch-hist-orig { color: var(--text-dim); }
.watch-hist-trans {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.play-hist-audio {
    border: none;
    background: transparent;
    color: var(--accent-cyan);
    cursor: pointer;
    font-size: 0.75rem;
}

.history-empty {
    text-align: center;
    padding: 1.5rem 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
}
.history-empty i { font-size: 1.5rem; margin-bottom: 4px; display: block; opacity: 0.5; }

/* Emergency Text Input & Full History Card Below Watch */
.watch-controls-toolbar {
    width: 100%;
    max-width: 420px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manual-input-row {
    display: flex;
    gap: 0.5rem;
}

.manual-input-row input {
    flex: 1;
    background: var(--bg-surface-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.8rem;
    color: #fff;
    font-size: 0.82rem;
    outline: none;
}

.btn-send-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--person1-color));
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Full History Card Container */
.history-card-container {
    background: var(--bg-surface-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.history-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-card-header h4 {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.history-actions {
    display: flex;
    gap: 0.4rem;
}

.btn-hist-small {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hist-small:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.history-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 200px;
    overflow-y: auto;
}
.history-card-body::-webkit-scrollbar { width: 4px; }
.history-card-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.empty-hist-msg {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    padding: 1rem 0;
}

.full-hist-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.6rem;
    font-size: 0.78rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.full-hist-item.p1-item { border-left: 3px solid var(--person1-color); }
.full-hist-item.p2-item { border-left: 3px solid var(--person2-color); }

.full-hist-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
}
.full-hist-header strong { color: var(--accent-cyan); }

.full-hist-orig { color: var(--text-muted); font-size: 0.78rem; }
.full-hist-trans {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Bottom Action Buttons Row */
.watch-bottom-action-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 3px 0 2px 0;
    width: 100%;
}

.btn-watch-action {
    background: rgba(0, 224, 255, 0.06);
    border: 1px solid rgba(0, 224, 255, 0.15);
    color: var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.btn-watch-action:hover {
    background: rgba(0, 224, 255, 0.15);
    border-color: var(--accent-cyan);
    color: #fff;
    transform: translateY(-1px);
}

.btn-watch-action i {
    font-size: 0.62rem;
}

/* Guide List Styling */
.guide-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.guide-item:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.2);
}

.guide-item-title {
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guide-item-desc {
    font-size: 0.66rem;
    color: var(--text-muted);
    line-height: 1.25;
}

/* Custom Premium Toggle Switch */
.settings-control-row {
    background: var(--bg-surface-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.setting-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.setting-title {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.setting-title i {
    color: var(--accent-cyan);
}

.setting-desc {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

input:checked + .slider {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Watch Location Banner */
.watch-location-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 2px 0;
}

.watch-location-banner:hover {
    background: rgba(0, 242, 254, 0.12);
    border-color: var(--accent-cyan);
    color: #fff;
}

/* Floating Map Controls on Watch Screen */
.watch-map-controls {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    padding: 3px 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.btn-map-control {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-map-control:hover, .btn-map-control.active {
    color: var(--accent-cyan);
    background: rgba(0, 224, 255, 0.15);
}

.btn-map-control i {
    font-size: 0.6rem;
}
