@charset "UTF-8";
.info-icon {
  position: relative;
  font-size: 18px;
  margin-left: 5px;
}

.dashboard-menu {
  width: 250px;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 200px; /* Ajusta el ancho del menú según tus necesidades */
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  margin-bottom: 15px;
}
.menu-list a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.menu-list a:hover {
  background-color: #e2e6ea;
}

.dashboard-container {
  display: flex;
  margin: 20px; /* Ajusta el valor según tus necesidades */
}

.dashboard-content {
  flex: 1;
  margin-left: 20px; /* Espacio entre el menú y el contenido */
}

.users-menu #user-search {
  width: 250px;
  padding: 10px 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  outline: none;
}
.users-menu #user-search:hover {
  border-color: #0073aa;
}
.users-menu #user-search:focus {
  border-color: #0073aa;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.4);
}
.users-menu #user-search::placeholder {
  color: #aaa;
}
.users-menu #role-filter {
  width: 250px;
  padding: 10px 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 25px;
  background: white
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140" fill="%23aaa"><path d="M20 45l50 50 50-50H20z"/></svg>')
    no-repeat right 15px center;
  background-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.users-menu #role-filter:hover {
  border-color: #0073aa;
}
.users-menu #role-filter:focus {
  border-color: #0073aa;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.4);
}
.users-menu .filter-container {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}
.users-menu .user-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1em;
  text-align: left;
}
.users-menu .user-table th,
.users-menu .user-table td {
  padding: 12px;
  border: 1px solid #ddd;
}
.users-menu .user-table th {
  background-color: #0073aa;
  color: #ffffff;
  text-align: center;
}
.users-menu .user-table tr:nth-child(even) {
  background-color: #ffffff;
}
.users-menu .user-table tr:nth-child(odd) {
  background-color: #ffffff;
}
.users-menu .user-table th:nth-child(1),
.users-menu .user-table td:nth-child(1) {
  width: 25%;
}
.users-menu .user-table th:nth-child(2),
.users-menu .user-table td:nth-child(2) {
  width: 35%;
}
.users-menu .custom-success-message {
  width: 30%;
  background-color: #28a745;
  color: white;
  border-radius: 10px;
  text-align: center;
  margin: 10px 0;
  display: none;
}
.users-menu .custom-save-button {
  background-color: #28a745;
  display: block;
  border: none;
  margin: 10px auto;
  text-align: center;
}
.users-menu .custom-save-button:hover {
  background-color: #218838;
}
.users-menu .modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.users-menu .modal.modal-active {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.users-menu .modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}
.users-menu .close {
  color: red;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.users-menu .close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.users-menu .filter-group.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.users-menu .custom-label {
  font-size: 1.1em;
  margin-bottom: 5px;
  display: block;
  color: #333;
}
.users-menu .custom-input[type="text"],
.users-menu .custom-input[type="email"],
.users-menu .custom-input {
  width: 100%;
  padding: 9px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.users-menu .custom-input[type="text"]:focus,
.users-menu .custom-input[type="email"]:focus,
.users-menu .custom-input:focus {
  border-color: #0073aa;
  box-shadow: 0 0 8px rgba(0, 115, 170, 0.3);
  outline: none;
}
.users-menu .custom-input[readonly] {
  background-color: #f7f7f7;
  cursor: not-allowed;
}
.users-menu .center-button {
  text-align: center;
}

.active-filter {
  font-weight: bold;
  color: #0073aa; /* Puedes cambiar el color según tu preferencia */
}

/*# sourceMappingURL=virtue-child.css.map */
