/* ==========================================
   Кнопка назад (Macintosh Style)
   ========================================== */

.back-button {
    position: fixed;
    top: 24px;
    left: 24px;
    min-width: 48px;
    height: 28px;
    padding: 0 12px;
    background: #C0C0C0;
    border: none;
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #808080;
    border-right: 2px solid #808080;
    box-shadow: inset 1px 1px 0 #DFDFDF, inset -1px -1px 0 #404040;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: none;
    z-index: 100;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 11px;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
}

.back-button:hover {
    background: #D0D0D0;
}

.back-button:active {
    background: #C0C0C0;
    border-top: 2px solid #404040;
    border-left: 2px solid #404040;
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    box-shadow: inset 1px 1px 2px #000000;
    color: #000000;
}

.back-button svg {
    color: currentColor;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .back-button {
        position: absolute;
        height: 24px;
        padding: 0 8px;
        font-size: 9px;
        top: 12px;
        left: 12px;
        /* border-radius: 6px; */
    }
}

@media (max-width: 480px) {
    .back-button {
        position: absolute;
        height: 24px;
        padding: 0 8px;
        font-size: 9px;
        top: 12px;
        left: 12px;
        /* border-radius: 6px; */
    }
}
