.reset-settings {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

#reset-colors-button {
    margin-right: 10px;
}

.reset-settings .button {
    margin-right: 10px;
}

.registration-form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-actions {
    margin-top: 20px;
}

.form-actions .spinner {
    margin-left: 10px;
}

#registration-message {
    margin-top: 15px;
    display: block;
}

#registration-message.hidden {
    display: none;
}

.site-registration-status {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.status-label {
    font-weight: 600;
    margin-right: 10px;
}

.status-indicator {
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.status-indicator.not-registered {
    background-color: #f8d7da;
    color: #721c24;
}

.status-indicator.registered {
    background-color: #d4edda;
    color: #155724;
}

.button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Make API key more visible for debugging */
#xtendbot_api_key {
    background-color: #f9f9f9;
    font-family: monospace;
    font-size: 14px;
    padding: 8px;
    border: 1px solid #ddd;
} 