   @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('https://static-udl.pages.dev/fonts/montserrat-v30-latin-regular.woff2') format('woff2');
    font-display: swap;
  }
 body {
        margin: 0;
      }

.navbar {
        overflow: hidden;
        background-color: white;        
		 top: 0;
        width: 100%;
      }

.navbar a {
        float: right;
        margin-right: 10px;
        display: block;
        color: red;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
      }

.navbar a:hover {
        background: #ddd;
        color: white;
      }
 .navbar-toggler-icon {
          filter: invert(1); /* Blanco sobre fondo oscuro */
        }

.main {
        padding: 16px;
        margin-top: 30px;
        height: 1500px; /* Used in this example to enable scrolling */
      }

.article {
        margin-bottom: 3%;
    }

    .center-screen {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 100vh;
    }
   
    .notice {
        
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		font-weight:bold;        
    }
   
    
	
	.notice, .noticeSeen {
  border-radius: 10px;  
  color: black;
  font-family: Montserrat;  
  margin:1rem;
}



.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {  
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

  .card-title {   
	color: #bb1655;
	font-weight:bold;
  }

@media (max-width: 600px) {
  .card-title {
    font-size: 1rem;	
  }

  .card-text {
    font-size: 0.9rem;
  }
  
  .center-screen {
     margin:0.1rem;
    }
   
}
