/* Button Standards — MindMirror global button design system */

/* Primary Button: blue filled, white text, pill shape */
.primary-button {
    display: inline-block;
    background: #007AFF;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 122, 255, 0.25);
}

.primary-button:hover {
    background: #0071E3;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
    text-decoration: none;
}

.primary-button:active {
    transform: translateY(0);
    opacity: 0.9;
}

/* Secondary Button: white bg, blue text, soft blue border */
.secondary-button {
    display: inline-block;
    background: #FFFFFF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background: #EFF6FF;
    color: #2563EB;
    transform: translateY(-1px);
    text-decoration: none;
}

.secondary-button:active {
    transform: translateY(0);
}
