.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
    padding: 20px;
}
.auth-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
}
.auth-logo {
    font-weight: 800;
    font-size: 24px;
    color: #2f6fed;
}
.auth-subtitle {
    color: #888;
    font-size: 13px;
    margin-bottom: 16px;
}
.auth-title {
    margin: 0 0 16px;
    font-size: 18px;
}
.auth-errors {
    background: #fdecea;
    border: 1px solid #f5c2c0;
    color: #b3261e;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 14px;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.auth-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}
.auth-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.auth-footer {
    margin-top: 16px;
    font-size: 13px;
    text-align: center;
    color: #666;
}
.auth-footer a {
    color: #2f6fed;
    text-decoration: none;
    font-weight: 600;
}

.sidebar {
    display: flex;
    flex-direction: column;
}
.sidebar-org {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 8px;
}
.sidebar-org-name {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}
.sidebar-workspace {
    font-size: 12px;
    color: #888;
}
.sidebar-footer {
    margin-top: auto;
    padding: 14px 16px;
    border-top: 1px solid #e5e7eb;
}
.sidebar-user {
    font-weight: 600;
    font-size: 13px;
}
.sidebar-role {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.logout-link {
    color: #e53e3e !important;
}

/* ===== Coming-soon feature pages (fb_*, ig_*, api_channels) ===== */
.feature-page-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 64px 40px;
    max-width: 520px;
    margin: 40px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-page-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #eef3ff;
    color: #2f6fed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}
.feature-page-title {
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 12px;
}
.feature-page-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 24px;
}
.feature-page-badge {
    display: inline-block;
    background: #fff4e9;
    color: #ff6a2b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 7px 18px;
    border-radius: 20px;
}