/* Primary action button */
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    transition: background-color 0.2s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}
.btn-primary-custom:disabled {
    background-color: var(--primary-disable);
    border-color: var(--primary-disable);
    color: var(--white);
}

/* SSO / social provider buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--light3);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--neutral5);
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-social:hover {
    border-color: var(--neutral1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.btn-social img {
    width: 20px;
    height: 20px;
}

/* Social icon-only buttons (for compact row) */
.btn-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--light3);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-social-icon:hover {
    border-color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.btn-social-icon img {
    width: 20px;
    height: 20px;
}

/* Assistance panel buttons */
.btn-assistances {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--light3);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--neutral5);
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.btn-assistances:hover {
    border-color: var(--primary);
}
.btn-assistances .btn_logo {
    width: 20px;
    height: 20px;
}

/* Tenant card button */
.btn-tenant-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 2px solid var(--light3);
    border-radius: 12px;
    padding: 16px 20px;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}
.btn-tenant-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Go back link */
.btn-goback {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.btn-goback:hover {
    text-decoration: underline;
}
