.hyperpro-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hyperpro-menu-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b7280;
}

.hyperpro-menu-link:hover {
    background: #f3f4f6;
    color: var(--color-primary);
}

.hyperpro-font-select {
    max-width: 110px;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
}

.dark .hyperpro-menu-link {
    color: #e5e7eb;
}

.dark .hyperpro-menu-link svg {
    color: #9ca3af;
}

.dark .hyperpro-menu-link:hover {
    background: #1f242c;
    color: var(--color-primary);
}

.dark .hyperpro-font-select {
    background: #151d27;
    border-color: #374151;
    color: #e5e7eb;
}

.hyperpro-theme-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.hyperpro-theme-modal.hidden {
    display: none;
}

.hyperpro-theme-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hyperpro-theme-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    background: #fff;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.15);
}

.dark .hyperpro-theme-modal__panel {
    background: #111820;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
}

@media (min-width: 640px) {
    .hyperpro-theme-modal {
        align-items: center;
    }

    .hyperpro-theme-modal__panel {
        border-radius: 16px;
    }
}
