.dna-translator-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dna-input-section {
    margin-bottom: 20px;
}

.dna-input-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#dna-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    margin-bottom: 10px;
}

.translate-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.translate-button:hover {
    background: #0056b3;
}

.results-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.result-box {
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.result-box h3 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.result-box p {
    margin: 0;
    font-family: monospace;
    word-break: break-all;
    color: #666;
}

.error {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
}