.text-red {
  color: #D02030;
  font-family: MyWebFont;
}
h2.fw-bolder.text-red.text-center {
  font-family: MyWebFont;
}
h3.fw-bolder.text-red.text-center {
  font-family: MyWebFont;
}
h5.modal-title {
  font-family: MyWebFont;
}     
.modal-content {
  font-family: MyWebFont;
}  

.closer {
  display: inline-block;
}
.evidence {
  border-radius: 15px;
  width: 180px;
  height: 150px;
}

@font-face {
  font-family: 'MyWebFont';
  src: url('Futura-Bold.woff') format('woff');
}

.fuente {
  font-family: MyWebFont;
}


.back-drop {
  background-color: #757679;
}

a.nav-link {
  color: black;
  text-decoration: none;
}

a.nav-link:hover {
  color: black;
  text-decoration: none;
}

.text-gray {
  color: #757679;
}


.select_style {
  width: 100%;
  max-width: 190px;
  height: 35px;
  background-color: #DC3545;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: MyWebFont;
}

.select_style:hover {
  background-color: #A72832;
  font-family: MyWebFont;
}

.select_style:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
  font-family: MyWebFont;
}

.loading_custom {
  width: 9rem;
  height: 9rem;
}

.loading_custom_estatus {
  width: 2rem;
  height: 2rem;
}

.table-container {
  overflow-x: auto;
  font-family: MyWebFont;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px auto;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: MyWebFont;
  table-layout: auto;
  min-width: 600px;
}

th, td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
}

th {
  background-color: #DC3545;
  color: white;
  text-transform: uppercase;
}

tr:nth-child(even) {
  background-color: #f8f8f8;
}

tr:hover {
  background-color: #f1f1f1;
  transition: 0.3s;
}

.logo-cell {
  width: 150px;
  text-align: center;
}

.logo-placeholder {
  width: 100px;
  height: 70px;
  background-color: #ddd;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  color: #555;
}

.activity-cell {
  text-align: left;
  padding-left: 15px;
  font-weight: bold;
}

.submit {
  background-color: #DC3545;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 300px;
  font-family: MyWebFont;
}

.submit:hover {
  background-color: #A72832;
  transform: scale(1.05);
  font-family: MyWebFont;
}

.submit:active {
  transform: scale(0.95);
  font-family: MyWebFont;
}



input[type=text], select {
  width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid red;
  font-size: 15px;
  font-family: MyWebFont;
}
input[type=email], select {
  width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid red;
  font-size: 15px;
  font-family: MyWebFont;
}
input[type=password], select {
  width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid red;
  font-size: 15px;
  font-family: MyWebFont;
}


textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 10px;
  resize: none;
  font-family: MyWebFont;
}

@media screen and (max-width: 768px) {
  table {
    font-size: 12px;
    min-width: 100%;
  }
  th, td {
    padding: 8px;
    font-family: MyWebFont;
  }
  .select_style {
    width: 100%;
    font-family: MyWebFont;
  }
  .submit {
    width: 100%;
    font-size: 14px;
    font-family: MyWebFont;
  }
  input[type=text], select {
    font-size: 40px;
    font-family: MyWebFont;
  }
  textarea {
    font-size: 12px;
    font-family: MyWebFont;
  }
}

.tooltip-inner {
  background-color: #D02030 !important; /* Fondo rojo */
  color: #FFFFFF !important; /* Texto blanco */
  font-weight: bold;
  padding: 8px; /* Espaciado interno */
  border-radius: 5px; /* Bordes redondeados */
}

/* Flecha del tooltip */
.bs-tooltip-top .tooltip-arrow::before, 
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: #D02030 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before, 
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-bottom-color: #D02030 !important;
}

.bs-tooltip-start .tooltip-arrow::before, 
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  border-left-color: #D02030 !important;
}

.bs-tooltip-end .tooltip-arrow::before, 
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  border-right-color: #D02030 !important;
}

.select-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre el select y el botón */
}

.select-container select {
  flex-grow: 1; /* Permite que el select se ajuste sin ocupar todo el espacio */
}

/* Diseño del botón */
.btn-add {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: #DC3545; /* Color rojo */
  color: #FFFFFF; /* Color del ícono */
  text-decoration: none;
  border-radius: 50%; /* Botón redondo */
  font-size: 16px;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra ligera */
  transition: all 0.3s ease-in-out;
}

/* Efecto hover */
.btn-add:hover {
  background-color: #A71D2A; /* Rojo más oscuro */
  transform: scale(1.1); /* Ligero aumento al pasar el mouse */
}




