   /* Prevent image from being copied */
   .no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Floating buttons for mobile */
@media (max-width: 768px) {
    .floating-btn-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        gap: 2px;
        display: flex;
        justify-content: space-between;
        z-index: 50;
    }

    .floating-btn {
        padding: 0;
        margin: 0;
        width: 50%;
        height: 50px;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .masuk {
        width: 500px;
    }

    .attention-section {
        padding-bottom: 40px;
        box-sizing: border-box;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.dropdown-menu {
    display: none;
    z-index: 3;
  }

.dropdown-menu.show {
    display: block;
  }


.nav-link {
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-link:hover {
    color: #D1D5DB; /* Equivalent to text-gray-300 in Tailwind CSS */
}

.nav-active {
    font-weight: bold;
    color: #D1D5DB; /* Equivalent to text-gray-300 in Tailwind CSS */
    text-decoration: underline; /* Optional: underline for active link */
}

.loader {
    border-top-color: #3498db;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}