#zic-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.zic-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zic-form-group {
    margin-bottom: 20px;
}

.zic-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.zic-form-group input[type="text"],
.zic-form-group input[type="email"],
.zic-form-group input[type="tel"],
.zic-form-group select,
.zic-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.zic-form-group input:focus,
.zic-form-group select:focus,
.zic-form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.zic-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.zic-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.zic-btn-primary {
    background: #4CAF50;
    color: white;
    width: 100%;
}

.zic-btn-primary:hover {
    background: #45a049;
}

.zic-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.zic-btn-secondary {
    background: #2196F3;
    color: white;
}

.zic-btn-secondary:hover {
    background: #0b7dda;
}

.zic-btn-toggle {
    background: #f5f5f5;
    color: #333;
    margin-right: 10px;
}

.zic-btn-toggle.active {
    background: #4CAF50;
    color: white;
}

.zic-btn-record {
    background: #f44336;
    color: white;
    width: 100%;
}

.zic-btn-record:hover {
    background: #da190b;
}

.zic-banner {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.zic-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.zic-recording-animation {
    color: #f44336;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

#zic-transcription-preview {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

#zic-transcription-text {
    font-style: italic;
    color: #555;
}
