/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #191717;
}

.berita {
    font-size: 25px;
    background-color: #085568;
    color: white;
    border-radius: 10px;
    margin: 8px 0;
    padding-top: 3px;
    font-weight: bold;
    white-space: nowrap; /* Agar teks tidak melompat ke baris baru */
}
.logo img {
    width: 60px; /* Sesuaikan ukuran logo sesuai kebutuhan */
    margin-right: 10px; /* Tambahkan sedikit jarak antara logo dan teks */
    vertical-align: left; /* Menyelaraskan logo secara vertikal dengan teks */
    border-radius: 50px;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: aliceblue;
}

.profiles {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.wa-button {
    display: block;
    padding: 10px 20px;
    background-color: #010101;
    color: #fbfbfb;
    font-weight: bolder;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 auto; /* Posisikan tombol di tengah */
}

.wa-button:hover {
    background-color: #128c7e;
}

.navbar {
    background-color: #333;
    font-weight: bolder;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.navbar .menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
    padding: 14px 20px;
    position: absolute;
    right: 10px;
}

.footer {
    text-align: center;
    margin-top: 50px;
    color: #ddd;
}


.hero table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: white;
    font-weight: bold;
}

.hero th, .hero td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.hero th {
    background-color: #064d2f;
}

.hero tr:hover {
    background-color: #0cacac;
}

/* Album styles */
.album {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: rgb(251, 251, 251);
    font-weight: bolder;
    font-size: 20px;
}

.album-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.album-item {
    background-color: #06336d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(4, 97, 46, 0.806);
    width: calc(25% - 20px);
    max-width: 300px;
    text-align: center;
}

.album-item img {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    padding: 20px;
    text-align: left;
}

.album-info p {
    margin-bottom: 10px;
}

/* Style the modal */
.modal {
    display: none; /* Hide the modal by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

  .result {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    color: white;
    font-weight: bolder;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.result form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.result label {
    margin-right: 10px;
}

.result select, .result button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

.result button {
    background-color: #128c7e;
    color: #fff;
    cursor: pointer;
}

.result button:hover {
    background-color: #0e6b56;
}

.result table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.result th, .result td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.result th {
    background-color: #064d2f;
}

.result tr:hover {
    background-color: #0cacac;
}

.jadwal table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: white;
    font-weight: bold;
}

.jadwal th, .jadwal td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.jadwal th {
    background-color: #064d2f;
}

.jadwal tr:hover {
    background-color: #0cacac;
}

.jadwal .button {
    padding: 8px 16px;
    background-color: #128c7e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.jadwal .button:hover {
    background-color: #0e6b56;
}

/* Media queries for responsiveness */
@media (max-width: 800px) {
    .menu-toggle {
        display: block;
    }
    .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .navbar.active .menu {
        display: flex;
    }
    .navbar a {
        padding: 10px 20px;
        width: 100%;
    }

    .album-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .album-item {
        width: 100%;
    }
}