body, html {
  font-family: "Segoe UI", "Roboto", sans-serif;
  background-color: #f9f9f9;
  color: #040404;
  margin: 0;
  padding: 0;
  height: 100%;
}

.main-container {
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.sidebar {
  width: 250px;
  background-color: #ffffff;
  border-right: 2px solid #e0e0e0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
}
.sidebar .logo img {
  max-width: 130px;
  margin-bottom: 2rem;
  display: block;
  margin-left: 0.5rem;
}
.sidebar .nav-link {
  color: #1c141c;
  font-weight: 500;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 4px solid transparent;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.sidebar .nav-link:hover, .sidebar .nav-link.active {
  color: #1998a0;
  border-left: 4px solid #1998a0;
  background-color: #f0f8ff;
  text-decoration: none;
}
.sidebar .footer {
  margin-top: auto;
  font-size: 0.7rem;
  color: #666;
  padding-top: 2rem;
}

.sidebar {
  min-width: 16.5rem !important;
}

.content-area {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
  background-color: #fefefe;
  height: 100vh;
}

h2 {
  color: #0f495e;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-top: 1rem;
}

.entity-selector {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  box-shadow: none;
  padding: 1.5rem;
}
.entity-selector .card-title {
  color: #0f495e;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.entity-lista {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.entity-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  color: #0f495e;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  border-left: 4px solid transparent;
  border-radius: 0.35rem;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  text-decoration: none;
}
.entity-btn:hover {
  background-color: #f0f8ff;
  border-color: #1998a0;
  border-left: 4px solid #1998a0;
  color: #1998a0;
  text-decoration: none;
}

.entity-form {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.entity-form .card-title {
  color: #0f495e;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.entity-form .form-label {
  color: #666;
  font-weight: 500;
}
.entity-form .form-control {
  border-radius: 0.35rem;
  border: 1px solid #e0e0e0;
}
.entity-form .btn-action {
  background-color: #1998a0;
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 0.35rem;
}
.entity-form .btn-action:hover {
  background-color: #0f495e;
}
.entity-form .btn-print {
  background-color: #f4883f;
}
.entity-form .btn-print:hover {
  background-color: #e67633 !important;
}

.alert {
  color: #f4883f;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.login-modal, .cancel-modal {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.login-modal h2, .cancel-modal h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
}
.login-modal input, .cancel-modal input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}
.login-modal button, .cancel-modal button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-modal button:hover, .cancel-modal button:hover {
  background-color: #0056b3;
}
.login-modal button:active, .cancel-modal button:active {
  color: white !important;
}
.login-modal .close, .cancel-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.cancel-modal button {
  width: 100% !important;
}

table th {
  background-color: #0f495e !important;
  color: white !important;
}
table td {
  cursor: pointer !important;
}

.text-success {
  color: #0b5c63 !important;
  font-size: 0.9rem;
}

.alert-warning {
  color: #f4883f !important;
}

.btn-danger {
  background-color: #dc3545 !important;
  border: none;
  color: white;
}

button {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
button a {
  text-decoration: none;
  color: white;
}

.text-muy-bajo {
  color: #004085 !important;
}

.text-bajo {
  color: #007bff !important;
}

.text-normal {
  color: #28a745 !important;
}

.text-alto {
  color: #fd7e14 !important;
}

.text-muy-alto {
  color: #dc3545 !important;
}

/*# sourceMappingURL=styles.css.map */
