/* ==================== static/style.css ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f4f7;
  padding: 40px;
  color: #333;
}

h1, h2 {
  color: #1a202c;
  margin-bottom: 20px;
}

form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  max-width: 600px;
}

input[type="text"],
input[type="number"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  background-color: #fdfdfd;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #2d3748;
}

button {
  background-color: #2b6cb0;
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 5px;
}

button:hover {
  background-color: #2c5282;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
}

th {
  background-color: #edf2f7;
  color: #2d3748;
}

tr:hover {
  background-color: #f7fafc;
}

form.inline {
  display: inline-block;
  margin-right: 10px;
}

input[type="number"] {
  width: 80px;
  display: inline-block;
  margin-right: 5px;
}
