/* Style untuk container utama */
#custom-launcher-container {
    position: fixed;
    bottom: 0;
    right: 35px;
    z-index: 1000;
}

/* Style untuk tombol close */
#close-launcher {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

#close-launcher:hover {
    background: #ff0000;
}

/* Style untuk gambar launcher */
#custom-launcher {
    width: 300px;
    height: auto;
    cursor: pointer;
}

/* Style untuk Othee Link */
.horizontal-links-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
}

.horizontal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    max-width: 1200px;
}

.mindex-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    min-width: 80px;
    transition: transform 0.3s;
    padding: 5px;
}

.mindex-link:hover {
    transform: translateY(-5px);
}

.mindex__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 8px;
}

.mindex__title {
    text-align: center;
    font-size: 14px;
    max-width: 65px;
}

.horizontal-links {
display: flex;
justify-content: center;
}
.mindex-link {
flex: 0 0 80px;
}

@media (max-width: 600px) {
.horizontal-links {
    gap: 10px;
}
.mindex-link {
    min-width: 35px;
    padding: 8px;
}
}