/*
 * Web product positioning: paste/LLM entry points hidden (logic stays in JS).
 * Add Exercise row aligns with iOS-style module affordance.
 */

#workout-copy-text-btn {
    display: none !important;
}

.web-hide-llm-paste-ui {
    display: none !important;
}

.add-exercise-wrap {
    justify-content: stretch;
}

.btn-add-exercise-module-row {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md, 10px);
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
    box-sizing: border-box;
}

.btn-add-exercise-module-row:hover {
    background: var(--bg-glass-hover);
}

.btn-add-exercise-module-row:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.btn-add-exercise-module-row .material-icons-round:first-of-type {
    font-size: 22px;
    opacity: 0.95;
    flex-shrink: 0;
}

.btn-add-exercise-module-row .btn-add-exercise-label {
    flex: 1;
    color: var(--text-main);
    font-weight: 600;
}
