body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    overflow-x: hidden; /* Hide horizontal overflow */
}

#isi {
    display: block;
    max-width: 100%; /* Ensure it doesn't exceed the container */
}

img {
    max-width: 100%;
    height: auto;
}

.profile-pic {
    width: 90%;
    height: auto;
    border-radius: 20px;
}

.research-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.research-card:hover {
    background-color: #e0e0e0;
}

.research-card a {
    color: #000;
    text-decoration: none;
}

.research-card a:hover {
    color: #000;
    text-decoration: none;
}

.image-card {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-right: 15px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.research-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.research-info h4,
.research-info p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

.research-info p {
    color: #000;
}

.research-info small {
    color: #6c757d;
}
