/* ===========================
   Butonlar (btn alias'ı)
   =========================== */

/* .button ile aynı hissiyat, ama .btn kullanan yerler için kopya */
.btn {
    appearance: none;
    border: 1px solid transparent;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
}

/* Varsayılan beta butonu: outline */
.btn.beta-btn {
    background: #f9fafb;
    border-color: var(--border);
    color: #111827;
}

.btn.beta-btn:hover {
    background: #f3f4f6;
}

/* Formdaki ana CTA için: .btn.primary
   (styles.css’teki .button-primary ile uyumlu) */
.btn.primary {
    background: #111827;
    color: #f9fafb;
    border-color: transparent;
}

.btn.primary:hover {
    opacity: 0.92;
}



/* CTA buttons */

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.button {
    appearance: none;
    border: 1px solid transparent;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.button-primary {
    background: #111827;
    color: #f9fafb;
}

.button-primary:hover {
    opacity: 0.92;
}

.button-ghost {
    background: #f9fafb;
    color: #111827;
    border-color: #e5e7eb;
}

.button-ghost:hover {
    background: #f3f4f6;
}