.tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
}

.tabs button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}

.tabs button.active {
    border-bottom: 2px solid #007bff;
    color: #007bff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.thumb-img {
    
    cursor: pointer;
   
    transition: 0.3s;
}
.thumb-img:hover {
    border-color: #007bff;
}

/* Modal wrapper */
.img-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    text-align: center;
}

/* Gambar di modal */
.modal-content {
    max-width: 50%;
    
    margin: auto;
    display: block;
    border-radius: 6px;
}

/* Tombol close */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close:hover {
    color: #f00;
}

