.tnr {
    font-family: 'Times New Roman', Times, serif;
}
.profile-capsule {
    display: block;
    margin: 20px auto;
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 50% / 30%;
    border: 2px solid #cbcbcb;
    padding: 10px;
    background-color: #fff;
}

.capsule {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 150px;
    background-color: #f5f5f5;
    border-radius: 50% / 30%;
    box-shadow: 0 2Xpx 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 10px auto;
    padding: 10px 0; 
}

.capsule-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 3px;
}

.capsule-percentage {
    font-size: 18px; 
    font-weight: bold;
    color: #333;
    margin: 0;
}

.capsule-label {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.gambar-titik {
    border: 5px  dotted #333;

}

.margin {
    margin-left: 54px;
}

.gs {
    filter: grayscale(100%);
    text-color: #595c5f;
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
    color: #6c757d;
}

.gs:hover {
    filter: grayscale(0%);
    color: black;
    transform: scale(1.05);
}

.kecil {
    font-size: 12px;
}

/* Container to hide overflow */
.slider-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

/* The row needs to be a flexbox and animated */
.slider {
    display: flex;
    width: 200%; /* Make it wide enough to loop */
    animation: slideLeft 10s linear infinite;
}

/* Keyframes for the scrolling effect */
@keyframes slideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}