#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

html {
    scroll-behavior: smooth;
}

body {
    transition: background-color 0.5s ease;
}

/* Add responsive design rules here */
@media (max-width: 768px) {
    /* Adjust styles for smaller screens */
}
.kategori-image-container {
    position: relative;
    overflow: hidden;
}

.plus-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffc800;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}

.kategori-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(254, 209, 54, 0.9);
    transition: all 0.2s ease-in-out;
}

.kategori-link:hover .kategori-hover {
    opacity: 1;
}

.kategori-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}