body { font-family: 'Cairo', sans-serif; background: linear-gradient(to right, #74ebd5, #9face6); display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; direction: rtl; } .container { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); text-align: center; max-width: 350px; width: 100%; } h1 { color: #333; margin-bottom: 20px; } input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 12px; font-size: 16px; } button { background: #4a90e2; color: white; border: none; padding: 12px 20px; border-radius: 12px; font-size: 16px; cursor: pointer; width: 100%; transition: background 0.3s; } button:hover { background: #357abd; } .result { margin-top: 20px; font-size: 18px; font-weight: bold; color: #222; } .category { margin-top: 10px; font-size: 16px; color: #555; }