@tailwind base; @tailwind components; @tailwind utilities; :root { --foreground-rgb: 0, 0, 0; --background-start-rgb: 255, 255, 255; --background-end-rgb: 0, 0, 255; } main { display: flex; min-height: 100vh; flex-direction: column; align-items: center; justify-content: center; } body { color: rgb(var(--foreground-rgb)); background: linear-gradient( to bottom right, transparent, rgb(var(--background-end-rgb)) ) rgb(var(--background-start-rgb)); } input { border: 1px solid #ccc; } p { text-align: center; } .dashboard { display: flex; flex-direction: column; width: 60vw; height: 80vh; border: 1px solid #ccc; border-radius: 15px; padding: 20px; box-shadow: 2px 2px 10px rgba(0, 0, 0, 5); background-color: white; gap: 20px; overflow: auto; } .form { display: flex; flex-direction: column; gap: 10px; align-items: center; } .content { flex: 1; border: 1px solid #ccc; overflow: auto; padding: 10px; } .button { background-color: #007bff; color: white; padding: 10px 20px; border-radius: 5px; border: none; cursor: pointer; max-width: 200px; }