/* Main styles */
body {
  background-color: #fff;
  color: #000;
  font-family: 'Arial', sans-serif;
}

/* Logo and specific elements */
.logo, .brand-element {
  color: #00b69b;
}

/* Buttons */
.btn-primary {
  background-color: #09d9ba;
  border-color: #09d9ba;
  color: white;
}

.btn-primary:hover {
  background-color: #00b69b;
  border-color: #00b69b;
}

/* Cards */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.card-header {
  background-color: rgba(9, 217, 186, 0.1);
  border-bottom: 2px solid #09d9ba;
}

/* Task form */
.task-row {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(0, 182, 155, 0.05);
}

.task-row:hover {
  background-color: rgba(0, 182, 155, 0.1);
}

/* Dashboard stats */
.stat-card {
  text-align: center;
  padding: 20px;
  border-left: 4px solid #09d9ba;
}

.productivity-rating {
  font-size: 2rem;
  font-weight: bold;
  color: #09d9ba;
}

/* Header */
.navbar {
  border-bottom: 3px solid #09d9ba;
}

/* Authentication forms */
.auth-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid rgba(9, 217, 186, 0.2);
  border-radius: 10px;
}

/* Admin dashboard */
.admin-filter {
  background-color: rgba(9, 217, 186, 0.05);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.user-stat-block {
  margin-bottom: 30px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}

/* Add button */
.add-task-btn {
  margin-bottom: 15px;
}