/* ============================================================================
   MULTI-SPOTLIGHT BUTTON
   Aligned with the bold, black-border aesthetic of the application
   ============================================================================ */

.multi-spotlight-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 3px solid #000000;
    border-radius: 0;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.multi-spotlight-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.multi-spotlight-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Active state - using the primary color from config */
.multi-spotlight-btn.active {
    background: #9b3642;
    color: white;
    border-color: #9b3642;
}

.multi-spotlight-btn.active:hover {
    background: #7d2b35;
    border-color: #7d2b35;
}

/* SVG icon styling */
.multi-spotlight-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 768px) {
    .multi-spotlight-btn {
        top: 10px;
        left: 10px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .multi-spotlight-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Hide text on tablets, show only icon */
    .multi-spotlight-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .multi-spotlight-btn {
        padding: 8px 14px;
        border-width: 2px;
    }

    .multi-spotlight-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */

.multi-spotlight-btn:focus {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

.multi-spotlight-btn:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .multi-spotlight-btn {
        border-width: 4px;
    }
}
