/* Attendance Tracker Calculator Styles */
body {
  font-family: Arial, sans-serif;
  background: #f0f6ff;
  margin: 0;
  padding: 20px;
}

.attendance-calculator {
  max-width: 450px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-top: 6px solid #007bff;
}

.attendance-calculator h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

button {
  flex: 1;
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  background: #007bff;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

.reset-btn {
  background: #6c757d;
}

.reset-btn:hover {
  background: #5a6268;
}

.results {
  margin-top: 20px;
  background: #e9f5ff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #b3d7ff;
}

.results h3 {
  color: #0056b3;
  margin-bottom: 10px;
}

.results p {
  font-size: 15px;
  margin: 8px 0;
}
