/**
 * @file
 * Subtheme specific CSS.
 */
 
 /* themes/custom/your_subtheme/css/custom.css */

.navbar-nav {  font-size:14px; font-weight:bold; text-align:center  }

.menu-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.adr-top-header {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center;     /* Centers items vertically */
    flex-direction: column;  /* Ensures the content is stacked vertically */    
    /*border-style:solid;*/
    
}

.hightlighted { text-align:center; }

/* Ensure it applies to mobile layouts */
@media (max-width: 768px) {
    .adr-top-header {
        display: flex;
        justify-content: center;
        align-items: center;
        width:100%;        
    }
}

.container{text-align:left}



.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 70px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto; /* Remove margins */
  padding: 20px; /* Padding inside the modal */
  border: 1px solid #888;
  width: 90%; /* Full width */
  height: 90%; /* Full height */  
  overflow: hidden; /* Enable scroll if content overflows */
}


.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none; /* Remove border */
  display: block; /* Ensures the iframe acts like a block element, filling its container */
}


/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus
{
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

