.wbk_zoomAuthField__fieldWrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbk_zoomAuthField__messageHolder {
    margin-top: 4px;
}

.wbk_zoomAuthField__setupMessage {
    color: #8a9393;
    font-family: typography.$font-primary;
    font-size: 14px;
}

.wbk_zoomAuthField__authorizeLink {
    color: #1f6763;
    text-decoration: none;
    font-family: typography.$font-primary;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;

    &:hover {
        color: #155350;
        text-decoration: underline;
    }
}

.wbk_zoomAuthField__authorizedLabel {
    color: #28a745;
    font-family: typography.$font-primary;
    font-size: 14px;
    font-weight: 500;
}

.wbk_zoomAuthField__removeAuthLink {
    color: #dc3545;
    text-decoration: none;
    font-family: typography.$font-primary;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;

    &:hover {
        color: #c82333;
        text-decoration: underline;
    }
}

.wbk_zoomAuthField__description {
    color: #8a9393;
    font-family: typography.$font-primary;
    font-size: 12px;
    margin: 0;
    margin-top: 4px;
}

.wbk_zoomAuthField__loading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 20px;
}

.wbk_zoomAuthField__spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #1f6763;
    animation: wbk_zoomAuthField_spin 1s linear infinite;
    flex-shrink: 0;
}

@keyframes wbk_zoomAuthField_spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
