body{
    margin: 0;
    padding: 0;
}
.content{
    background: white;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
}
.content1{
    display: flex;
    flex-direction: row;
}
.item2{
    flex: 1;
    margin: 3px;
}
.item3{
    flex: 1;
    margin: 3px;
}
.content3{
    display: flex;
    flex-direction: row;
}
.item4{
    flex: 1;
    margin: 3px;
}
.item5{
    flex: 1;
    margin: 3px;
}
.timer{
    margin: 3px;
}
.content4{
    display: flex;
    flex-direction: row;
}
.item6{
    flex: 1;
}
.item7{
    flex: 1;
}
.box{
    background: orange;
    max-width: 800px;
    width: 100%;
}
.navbar{
    background: white;
}
.navbar .logo img{
    width: 200px;
}
.navbar .menu{
    justify-content: space-between;
    display: flex;
    align-items: center;
    background: black;
    padding: 5px;
}
.navbar .menu ul{
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.navbar .menu ul a{
    text-decoration: none;
    color: white;
    border-right: solid 1px white;
    padding-right: 5px;
    padding-left: 5px;
}
#clock{
    color: white;
}
.marquee marquee{
    background: white;
    padding: 0;
    margin: 0;
}
/* Carousel container */
.carousel {
    overflow: hidden;
    position: relative;
}
/* Track yang bisa digeser */
.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
}

/* Setiap slide */
.carousel-slide {
    min-width: 100%;
    user-select: none;
}

/* Opsional: Styling gambar */
.carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.result{
    padding: 5px;
}
.result .titel{
    text-align: center;
    border-bottom: solid 1px black ;
}
.result .titel div{
    font-size: 20px;
    font-weight: bold;
}
.table table{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
.table td{
    width: 50%;
    padding: 10px;
    border-bottom: solid black 1px;
}
.timer{
    text-align: center;
    background: black;
    color: white;
    padding: 5px;
}
.countdown{
    display: flex;
    font-size: 30px;
    text-align: center;
    justify-content: center;
}
.history div{
    font-weight: bold;
    padding: 5px;
}
.history table{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
.history th{
    border-bottom: solid black 1px ;
}
.history td{
    border-bottom: solid black 1px ;
    padding: 5px;
}
.Official .titel{
    background: black;
    color: white;
    text-align: center;
    padding: 5px;
    margin: 5px;
    font-weight: bold;
}
.bold{
    font-weight: bold;
    padding-bottom: 5px;
}
.item6{
    margin: 3px;
}
.item7{
    background: black;
    color: white;
    margin: 3px;
}
.item7 div{
    margin: 5px;
}
.content5{
    background: black;
    color: white;
    padding: 5px;
}
@media (max-width: 768px) {
    .content1 {
        flex-direction: column;
    }
    .content3{
        flex-direction: column;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    /* Responsive: 1 kolom di mobile */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
.item{
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 5px;
}
.item table{
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}
.item table th{
    border: solid black;
    background: black;
    color: white;
}
.item table td{
    border: solid black;
    background: white;
}
.contact{
    padding: 10px;
}