/* ── Ifox Social Connect ──────────────────────────────────── */

.ifox-sc-wrap {
    margin: 16px 0;
}

/* Divider */
.ifox-sc-divider {
    display: flex;
    align-items: center;
    margin: 12px 0;
    color: #6c757d;
    font-size: 13px;
}
.ifox-sc-divider::before,
.ifox-sc-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}
.ifox-sc-divider span {
    padding: 0 12px;
    white-space: nowrap;
}

/* Button row */
.ifox-sc-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Base button */
.ifox-sc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .15s ease;
    border: 1px solid transparent;
}
.ifox-sc-btn:hover {
    opacity: .88;
    text-decoration: none;
}
.ifox-sc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Google — white with border */
.ifox-sc-google {
    background: #fff;
    border-color: #dadce0;
    color: #3c4043;
}
.ifox-sc-google:hover {
    background: #f8f9fa;
    color: #3c4043;
}

/* Facebook — brand blue */
.ifox-sc-facebook {
    background: #1877f2;
    color: #fff;
}
.ifox-sc-facebook:hover {
    color: #fff;
}

/* Apple — black */
.ifox-sc-apple {
    background: #000;
    color: #fff;
}
.ifox-sc-apple:hover {
    color: #fff;
}

/* ── My account block ─────────────────────────────────────── */

.ifox-sc-account-block {
    margin: 20px 0;
    padding: 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}
.ifox-sc-account-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
}
.ifox-sc-account-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ifox-sc-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}
.ifox-sc-account-item:last-child {
    border-bottom: none;
}
.ifox-sc-provider-name {
    font-weight: 500;
}
.ifox-sc-unlink-form {
    margin: 0;
}
