* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana;
}

ody {
    margin:0;
    padding:0;
    font-size:100%;
}

#flex-container {
    display:flex;
    flex-direction:column;
    min-height:100vh;
    min-height:100svh;
}

#flex-container > footer {
    margin-top:auto;
    padding:0;

}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 22px;
  color: black;
  font-weight: bold;
}
h2 {
  font-size: 18px;
  color: black;
}
h3 {
  font-size: 16px;
  color: black;
}
h4 {
  font-size: 14px;
  color: black;
}
h5 {
  font-size: 12px;
  color: black;
}
h6 {
  font-size: 10px;
  color: black;
}

a:link, a:visited {
  text-decoration: none;
  color: #4F868E;
}

nav {
    background-color: #003B49;
    padding: 2px 2px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    gap: 5px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
    font-size: 20px;
    transition: background 0.3s ease;
}

.menu a:hover {
    background-color: #8fd6bd;
    border-radius: 5px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color:#4F868E;
    min-width: 150px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.submenu li {
    display: block;
}

.submenu li a {
    padding: 10px 15px;
    display: block;
    color: white
    left: 0;;
    white-space: nowrap;
}

.menu li:hover .submenu {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 3px 5px;
}

.full-width-image {
    width: 100%; 
    height: auto;
}

.main-text {
  margin: auto;
  width: 90%;
  border: none;
  padding: 10px;
/*  text-align: justify; */ 
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: top;
}

iframe {
    width: 90%; 
    border: none;
}

.agenda-text {
  margin: auto;
  width: 100%;
  border: none;
  padding: 10px;
  background-color: #f6f9fa;
}

.agenda-tabel {
  width: 100%;
}

.agenda-tabel tr {
   height: 8px;
}

.agenda-tabel td {
    padding: 1px;
}

.agenda-tabel-l {
    width: 2%;
    text-align: right;
}

.agenda-tabel-r {
    width: 98%;
    text-align: left;
}
 
.schema-tabel {
  width: 30%;
}

.schema-tabel tr:nth-child(even) {
    background-color: white;
}

table {
    width: 90%;
    border-collapse: collapse;
    margin: auto;
}

th, td {
    padding: 12px;
    border:0px;;
}

.nr {
    width: 5%;
    text-align: center;
}

.rn {
    width: 80%;
    text-align: left;
}

.km {
    width: 5%;
    text-align: center;
}

.hm {
    width: 5%
    text-align: center;
}

.vl {
    width: 5%;
    text-align: center;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.center-align {
    text-align: center;
}

th {
    background-color: #003B49;
    color: white;
}

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

.error { 
    color: red;
}

.table-login {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
    float: left;
}

.table-login th {
    background-color: #003B49;
    color: white;
}

.table-login tr {
   height: 8px;
}

.table-login  td {
    padding: 5px;
}

.table-login tr:nth-child(even) {
    background-color: white;
}

.table-login-l {
    width: 10%;
    text-align: right;
}

.table-login-r {
    width: 90%;
    text-align: left;
}
   
input[type=submit] {
    border-radius: 10px;
    background-color:  #00838F;
    color: #FFF;
    text-decoration: none;
    padding: 5px;
    min-width: 60px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: #4F868E;
        padding:5px 0px;
        width: 40%5
    }

    .menu li {
        text-align: right;
        padding: 0px 0;
    }

    .menu a {
        font-size: 18px;
     }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .submenu {
        position: static;
        display: none;
    }

    .menu li:hover .submenu {
        display: block;
   }
}
