* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  min-height: 100vh;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  margin-top: 40px;
}

/* ---------- Forms ---------- */
input, select, button {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

button {
  background: #08CCEB;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background: #06b0cb;
}

/* ---------- Headings ---------- */
h1, h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #050739;
}

/* ---------- Navbar ---------- */
.navbar {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 15px 15px;
}

.navbar a {
  text-decoration: none;
  margin-left: 20px;
  color: #ffffff;
  font-weight: 600;
}

.navbar a:hover {
  color: #08CCEB;
}

/* ---------- Dashboard Tiles ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.tile {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.tile h3 {
  margin-bottom: 10px;
  color: #050739;
}

/* ---------- Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background: #08CCEB;
  color: white;
}

/* ---------- Status ---------- */
.status {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}
