#gaia-translate-root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.gaia-translate-container {
    background-color: #0a0a0a;
    color: white;
    padding: 24px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.gaia-translate-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #3b82f6;
    font-size: 18px;
}

.gaia-translate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .gaia-translate-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gaia-translate-textarea {
    background-color: #1a1b1e;
    border: none;
    border-radius: 8px;
    padding: 16px;
    color: white;
    width: 100%;
    height: 200px;
    resize: none;
    font-size: 16px;
    line-height: 1.5;
    font-family: inherit;
}

.gaia-translate-output {
    background-color: #1a1b1e;
    border-radius: 8px;
    padding: 16px;
    height: 200px;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.5;
}

.gaia-translate-output .translation-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gaia-translate-output .translation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gaia-translate-output .translation-number {
    font-weight: 600;
    color: #3b82f6;
    margin-right: 8px;
}

.gaia-translate-explanation {
    background-color: #1a1b1e;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.gaia-translate-explanation h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3b82f6;
}

.gaia-translate-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background-color 0.2s;
}

.gaia-translate-button:hover {
    background-color: #2563eb;
}

.gaia-translate-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gaia-translate-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}

.gaia-translate-word-count {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.gaia-translate-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
    display: block;
}

