Spaces:
Running
Running
| body { | |
| background-color: #0f172a; /* لون خلفية داكن ومريح */ | |
| color: #f8fafc; | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| padding: 20px; | |
| margin: 0; | |
| direction: rtl; /* لدعم اللغة العربية */ | |
| } | |
| h1 { | |
| color: #4ade80; /* لون أخضر "بونساي" */ | |
| font-size: 1.5rem; | |
| margin-bottom: 20px; | |
| } | |
| #status { | |
| background-color: #1e293b; | |
| border: 1px solid #334155; | |
| padding: 10px; | |
| border-radius: 8px; | |
| font-size: 0.85rem; | |
| width: 100%; | |
| max-width: 500px; | |
| margin-bottom: 15px; | |
| text-align: center; | |
| } | |
| textarea { | |
| width: 100%; | |
| max-width: 500px; | |
| background-color: #1e293b; | |
| border: 1px solid #334155; | |
| border-radius: 12px; | |
| padding: 15px; | |
| color: white; | |
| font-size: 1rem; | |
| resize: none; | |
| outline: none; | |
| margin-bottom: 15px; | |
| } | |
| textarea:focus { | |
| border-color: #4ade80; | |
| } | |
| button { | |
| background-color: #22c55e; | |
| color: white; | |
| border: none; | |
| padding: 12px 30px; | |
| border-radius: 8px; | |
| font-weight: bold; | |
| cursor: pointer; | |
| transition: background 0.3s; | |
| } | |
| button:hover { | |
| background-color: #16a34a; | |
| } | |
| button:disabled { | |
| background-color: #475569; | |
| cursor: not-allowed; | |
| } | |
| #output { | |
| width: 100%; | |
| max-width: 500px; | |
| margin-top: 25px; | |
| padding: 15px; | |
| background-color: #1e293b; | |
| border-right: 4px solid #4ade80; /* لمسة جمالية للرد */ | |
| border-radius: 8px; | |
| min-height: 100px; | |
| line-height: 1.6; | |
| word-wrap: break-word; | |
| } | |