body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f6f6f6;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

footer {
  background-color: #098442;
  height: 60px;
  margin: 0px auto;
}

header {
  border-bottom: 1px solid #098442;
  /* height: 60px; */
  margin: 0px auto;
}

footer img {
  height: 70%;
  margin: 0px auto;
  line-height: 60px;
  padding: 4px;
}

#largeImage {
  position: relative;
  display: block;
  margin: auto;
  max-width: 100%;
}
#largeImage2 {
  position: relative;
  display: block;
  margin: auto;
  max-width: 100%;
}

.topnav-right {
  float: right;
}

.outerDivHeader {
  background-color: #ffffff;
  height: 100px;
  margin: 0px auto;
}

.outerDiv {
  height: 300px;
  margin: 0px auto;
}

.leftDiv {
  width: 45%;
  float: left;
  padding-left: 25px;
  padding-top: 10px;
}

.rightDiv {
  width: 35%;
  float: right;
  background-color: #098442;
}

.rightDiv i {
  float: right;
  color: #ffffff;
  font-size: 30px;
  padding-right: 20px;
  margin: 0px;
  cursor: pointer;
  line-height: 100px;
}

.midDiv {
  width: 20%;
  height: 100px;
  float: left;
  background-image: url(/img/phase.png);
  background-size: contain;
  background-position-x: right;
  background-repeat: no-repeat;
}

.circle-login{
  height: 40px;
  width: 40px;
  background-size:contain;
  display: inline-block;
  border-radius: 50%;
  background-size: cover;
  padding: 0;
  margin: 5px 0 0 5px;
}

.severity-widget {
  position: relative;
  padding-top: 10px;
  height: 40px;
  width: 150px; /* Puedes ajustar el ancho desde aquí */
}

.severity-bar {
  height: 10px;
  float: left;
  margin-top: 26px;
}

.narrow-bar {
  position: relative;
  height: 8px;
  top: 14px;
}

.indicator {
  position: relative;
  color:#666666;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
  top: 6px;
}

.severity-circle {
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid;
  border-radius: 50%; /* Hace que el div sea un círculo */
  background-color: white;
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  justify-content: center; /* Centra horizontalmente el contenido */
  font-weight: bold;
  bottom: 50px; /* Ajustado para que esté 2px arriba del indicador */
}

.circle-leaf {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50px; /* Cambia este valor si quieres un círculo más grande o más pequeño */
  height: 32px;
  background-color: #60a14e;
  border-radius: 20px; /* Esto hace que el div sea un círculo */
  border: 1px solid #008000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Color del número 4 */
  font-weight: normal;
  font-size: 12px;
  transform: translate(-10px, -50%); /* Centra el círculo y lo mueve 10px hacia la izquierda */
}

#photosGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 25px;
}

.photoItem {
  position: relative;
}

.photoItem img {
  width: 100%;
  height: auto;
  display: block;
}

.photoItem input[type="checkbox"] {
  position: absolute;
  top: 10px;
  right: 10px;
}

.hidden-radio {
  display: none;
}

.number-selection {
  display: flex;
  gap: 10px; /* Espacio entre los cuadros */
}

.number-box {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #098442;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bottom-date-sample {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 13px;
  /*background-color: #aaaaaa;*/
  color: #444444;
  width: 100%;
  white-space: nowrap;
  padding: 3px 4px 4px 3px;
}

.photo-tag {
  color:white; 
  padding:3px;
  border-radius: 3px;
}

.mini-tag {
  color:#333333; 
  padding:3px;
  border-radius: 3px;
  background-color: #dfdfdf;
}

.number-box:hover {
  background-color: #ddd; /* Color de fondo cuando pasas el mouse por encima */
}

.hidden-radio:checked + .number-box {
  background-color: #ccc; /* Color de fondo cuando el cuadro está seleccionado */
}

/* Estilos del contenedor */
#file-container {
  width: 100%;
  height: 150px;
  border: 1px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 12px;
}

/* Ocultamos el input original */
#file-input {
  display: none;
}

/* Estilos del ícono y texto */
#file-icon {
  font-size: 24px;
}

/* Estilos para la barra de progreso */
#progress-bar {
  width: 0;
  height: 5px;
  background-color: green;
  position: absolute;
  bottom: 0;
  left: 0;
}

.container button {background-color:#098442; border-color:#098442;}

@media (min-width: 200px) {
  .container {max-width: 100%;} 
  .container button {background-color:#098442; border-color:#098442;}
  .outerDiv {height: 200px;padding-top:2rem!important;}
  .leftDiv {width: 95%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 0%;}
  .rightDiv {width: 5%;display:none !important;}
}
@media (min-width: 300px) {
  .container {max-width: 100%;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 95%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 0%;}
  .rightDiv {width: 5%;display:none !important;}
}
@media (min-width: 400px) {
  .container {max-width: 100%;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 95%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 0%;}
  .rightDiv {width: 5%;display:none !important;}
}
@media (min-width: 576px) {
  .container {max-width: 560px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 95%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 0%;}
  .rightDiv {width: 5%;display:none !important;}
}
@media (min-width:640px) {
  .container {max-width:620px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 25%;}
  .rightDiv {width: 30%;display:block !important;}
}
@media (min-width:768px) {
  .container {max-width:680px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .leftDiv a {margin-bottom: 0px !important;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
@media (min-width: 850px) {
  .container {max-width: 800px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
@media (min-width: 992px) {
  .container {max-width: 900px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
@media (min-width: 1200px) {
  .container {max-width: 1100px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
@media (min-width: 1400px) {
  .container {max-width: 1300px;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
@media (min-width: 1600px) {
  .container {max-width: 90%;} 
  .container button {background-color:#098442; border-color:#098442;}
  .leftDiv {width: 45%;}
  .midDiv {width: 20%;}
  .rightDiv {width: 35%;display:block !important;}
}
