






/* To put web page content */
.box-content {
    width: 100vw;
    height: 100vh;

    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas: "hd" "bd" "ft";

    align-items: center;
    justify-content: center;

    overflow: auto;
}

.pos-hd { grid-area:hd }
.pos-bd { grid-area:bd }
.pos-ft { grid-area:ft }


/*  NAVBAR */


nav 
{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);

    grid-area: hd;
}
nav ul
{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}
nav li
{
    height: 50px;
}
nav a 
{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;

    display: flex;
    align-items: center;
    color: black;

}
nav a:hover
{
    background-color: #f0f0f0;

}
nav li:first-child
{
    margin-right: auto;
}
        
.modal {
  display: none;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 1000; /* Ensures modal is on top */
}

.modal-content {
  background-color: white;
  
  border-radius: 0.5rem;
  /* Add other styling for your modal content */

  width: 100%;
  max-width: 360px;

  overflow: auto;

}


