/**
 * RIOS Support System Styles
 * Minimal styles for support form and status messages
 */

/* Support form overlay */
.rios-support-overlay {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.rios-support-form-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rios-support-form-container h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.rios-support-subtitle {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Form groups */
.rios-form-group {
    margin-bottom: 15px;
}

.rios-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.rios-form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.rios-form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Form buttons */
.rios-form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.rios-btn-primary,
.rios-btn-secondary {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.rios-btn-primary {
    background: #667eea;
    color: white;
}

.rios-btn-primary:hover {
    background: #5568d3;
}

.rios-btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.rios-btn-secondary:hover {
    background: #e0e0e0;
}

/* Support status messages */
.rios-support-status {
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.rios-support-status.connecting {
    background: #fff3cd;
    color: #856404;
}

.rios-support-status.waiting {
    background: #d1ecf1;
    color: #0c5460;
}

.rios-support-status.connected {
    background: #d4edda;
    color: #155724;
}

.rios-support-status.error {
    background: #f8d7da;
    color: #721c24;
}

/* Operator message styling */
.message.operator {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
}
