@import url('https://fonts.googleapis.com/css2?family=Raleway&family=Roboto&family=Material+Icons&family=Material+Symbols+Outlined');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 1rem;
  background-color: #2c3e50;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header h2 {
  font-size: 1.2rem;
}
form {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.todo {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #e6e6e6;
  margin-bottom: 20px;
}
.order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
h1 {
  font-size: 1.5rem;
  color: #333;
}
label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}
input, select {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button[type="submit"], button {
  display: block;
  width: 100%;
  max-width: 200px;
  min-width: 62px;
  padding: 10px;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px auto 0;
  text-align: center;
  text-decoration: none !important;
}
button[type="submit"]:hover, button:hover {
  background-color: #e67e22;
}
button a {
  text-decoration: none !important;
}
table {
  width: 100%;
  margin: 0px auto 50px;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
thead th {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 10px 0px;
  font-size: 0.75rem;
  position: sticky;
  top: 0px;
  z-index: 999;
}
tbody td {
  text-align: center;
  padding: 5px;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
tbody td.nombre-completo {
  text-align: left;
  width: 250px;
}
tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
tbody tr:hover {
  background-color: #f1f1f1;
}
.ocultar {
  display: none;
}
td.texto_vl_cl {
  color: white;
  font-weight: bold !important;
}
.sin-evaluar {
  color: lightgray;
  font-style: italic;
}

#navigation {
  margin: 0 0.5em;
  color: grey;
}
#navigation a:link, #navigation a:visited, #navigation a:active {
  color: grey;
}
#navigation a:hover {
  color: white;
}

.material-symbols-outlined {
  vertical-align: text-bottom !important;
}

.spin-this {
  animation: spin-this 2s infinite linear;
}
@keyframes spin-this {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}