Edit file File name : style.css Content :/* public/style.css */ @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap'); * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Cairo', sans-serif; background-color: #f5f5f5; color: #333; line-height: 1.6; } .container { max-width: 800px; margin: 2rem auto; padding: 2rem; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } h1 { color: #2c3e50; margin-bottom: 1.5rem; text-align: center; } h2 { color: #2c3e50; margin-bottom: 1rem; } .form-group { margin-bottom: 1.5rem; } label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #444; } input, textarea { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 4px; font-family: 'Cairo', sans-serif; font-size: 16px; } textarea { min-height: 100px; resize: vertical; } button { background-color: #3498db; color: white; border: none; padding: 0.8rem 1.5rem; font-size: 1rem; border-radius: 4px; cursor: pointer; transition: background-color 0.3s; font-family: 'Cairo', sans-serif; font-weight: 600; width: 100%; } button:hover { background-color: #2980b9; } .hidden { display: none; } #output { margin-top: 2rem; padding: 1rem; background-color: #f9f9f9; border-radius: 4px; border-right: 4px solid #3498db; } #outputText { white-space: pre-wrap; overflow-x: auto; background-color: #f1f1f1; padding: 1rem; border-radius: 4px; font-family: monospace; direction: ltr; text-align: left; } #loader { text-align: center; margin-top: 2rem; } .spinner { border: 4px solid rgba(0, 0, 0, 0.1); width: 36px; height: 36px; border-radius: 50%; border-left-color: #3498db; animation: spin 1s linear infinite; margin: 0 auto; } .error { background-color: #ffecec; color: #e74c3c; padding: 0.8rem; border-radius: 4px; border-right: 4px solid #e74c3c; margin-top: 1rem; } .success { background-color: #eaffea; color: #27ae60; padding: 0.8rem; border-radius: 4px; border-right: 4px solid #27ae60; margin-top: 1rem; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }Save