/* Text Decryptor Tool Styles */
.tool-container { max-width: 600px; margin: 0 auto; }
#textInput, #resultText { width: 100%; min-height: 120px; font-size: 1.1rem; margin-bottom: 1rem; padding: 0.75rem; border-radius: 8px; border: 1px solid #e2e8f0; }
.decryption-options { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.decryption-options label { font-weight: 500; }
.decryption-options select, .decryption-options input[type="password"] { padding: 0.5rem; border-radius: 6px; border: 1px solid #e2e8f0; font-size: 1rem; }
.result-container { background: #f8fafc; border-radius: 10px; padding: 1.5rem; margin-top: 1rem; text-align: left; }
#resultText { background: #f1f5f9; resize: vertical; }
#copyBtn { margin-top: 0.75rem; width: 100%; }
#decryptBtn { width: 100%; margin-bottom: 1.5rem; }
@media (max-width: 600px) { .tool-container { padding: 0 0.5rem; } .decryption-options { flex-direction: column; align-items: stretch; gap: 0.5rem; } } 