body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.dashboard-container {
  max-width: 800px;
  margin: 50px auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.dashboard-container h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.options-container {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  flex-wrap: wrap;
}

.option-box {
  display: inline-block;
  padding: 15px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 16px;
  font-weight: bold;
}

.option-box:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.total-container {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

a.logout {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  color: #dc3545;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a.logout:hover {
  color: #a71d2a;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: #007bff;
  color: white;
}

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

table tbody tr:hover {
  background-color: #e9ecef;
  cursor: pointer;
}

table button {
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

table button.edit-btn {
  background-color: #ffc107; /* Amarillo */
  color: #000; /* Negro */
  transition: background-color 0.3s ease;
}

table button.edit-btn:hover {
  background-color: #e0a800; /* Amarillo más oscuro */
}

table button.delete-btn {
  background-color: #dc3545; /* Rojo */
  color: #fff; /* Blanco */
  transition: background-color 0.3s ease;
}

table button.delete-btn:hover {
  background-color: #bd2130; /* Rojo más oscuro */
}

button.guardar-btn {
  background-color: #008F39; /* Amarillo */
  color: #dddddd; /* Negro */
  transition: background-color 0.3s ease;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}

button.back-button {
  background-color: #008F39; /* Amarillo */
  color: #dddddd; /* Negro */
  transition: background-color 0.3s ease;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}