main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.schedule-container {
  width: 94%;
  margin: 16px;
  padding: 20px;
  background: #333;
  color: #fff;
  text-align: center;
  justify-content: center;
}

h2 {
  color: #BEBABA;
  font-size: 2rem;
  margin-bottom: 20px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #BEBABA;
}

.schedule-table th {
  background-color: #444;
  color: #fff;
}

.schedule-table td {
  background-color: #222;
}

.schedule-table td button.cta {
  background-color: #0000E1;
  color: #CADCFC;
  text-align: center;
  padding: 10px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.schedule-table td button.cta:hover {
  transform: scale(1.1);
  background-color: #0000FF;
}

@media only screen and (max-width: 768px) {
  .schedule-table {
      font-size: 1rem;
  }

  .schedule-table th, .schedule-table td {
      padding: 8px;
  }

  .schedule-table td button.cta {
      font-size: 1rem;
  }
}/* Fading entrances  */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .fadein {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-duration: 2s;
    
  }




  @keyframes slideInUp {
    from {
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .slide {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    animation-duration: 1s;
  }





  @keyframes shakeY {
    from,
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    10%,
    30%,
    50%,
    70%,
    90% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    20%,
    40%,
    60%,
    80% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  }
  .animate__shakeY {
    animation-name: shakeY;
    animation-duration: 1s;
    
  }





  /* Base Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; 
    color: #BEBABA; 
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Nav stíll */
.navboy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1C1C1E;
    border-radius: 50px;
    padding: 10px 20px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}



nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin: 5px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

/* Header Styles */
header {
    text-align: center;
    font-size: 2.5rem;
    padding: 20px;
    word-wrap: break-word;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
    background: none;
    width: 90%;
}

/* Button */
.cta {
    background-color: #0000E1;
    color: #CADCFC;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.cta:hover {
    transform: scale(1.1);
    background-color: #0000FF;
}

.cta a {
    color: #CADCFC;
    text-decoration: none;
}

/* Form */
form {
    border-top: 1px solid #BEBABA;
    padding-top: 20px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #BEBABA;
}

.form-group input, 
.form-group textarea, 
.form-group button {
    width: 100%;
    padding: 10px;
    border: 1px solid #BEBABA;
    background: none;
    color: #BEBABA;
    font-size: 1rem;
}

.form-group button {
    background-color: #0000E1;
    color: #CADCFC;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #0000FF;
}

/* myndir */
.myndir, .myndir1 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 16px;
}

img {
    width: 100%;
    max-width: 400px;
}

/* Box Components */
div.box1, div.box2 {

    max-width: 800px;
    padding: 20px;
    background: #1C1C1E;
    margin: 16px auto;
    text-align: center;
}

p.texti {
    font-size: 1.2rem;
    font-weight: 800;
}

p.texti2 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;


    
}

/* Socials */
div.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: white;
    
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    height: 3px;
    width: 30px;
    background: #BEBABA;
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-toggle {
  display: none; /* Completely hides the checkbox */
}

/* Responsive Styles */
@media only screen and (max-width: 600px) {
    header {
        font-size: 1.8rem;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        border-radius: 4px;
    }

    .hamburger {
        display: flex;
    }

    .adalnav {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #1C1C1E;
        padding: 10px;
        width: 100%;
    }

    .menu-toggle:checked + .hamburger + .adalnav {
        display: flex;
    }
    
}

div.box1{
    text-align: center;
    display: inline-flex;
    padding: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    background: #1C1C1E;
    margin: 16px;
}

p.texti{
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-align: center;
}
p.texti2{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}