body {
    font-family: sans-serif;
    padding: 20px;
    background-color: #f8f9fa;
}

.header .logo {
    max-width: 100px;
    height: auto;
}

.card-horizontal {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

.card-img-left {
    width: 40%;
    object-fit: cover;
}

.card-body {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shadow {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 10px; /* Membuat sudut tidak tajam */
}

.clickable {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.clickable:hover {
    transform: scale(1.02);
}

.hidden-page {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-horizontal {
        flex-direction: column;
    }

    .card-img-left {
        width: 100%;
        height: auto;
    }

    .card-body {
        width: 100%;
    }
}

.img {
max-width: 300px;
max-height: 300px;
min-width: 100px;
min-height: 100px;
width: 100px;
height: 100px;
}
