.drop-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.drop-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.zone-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zone-group h3 {
    margin: 0;
    padding: 0 1.1rem;
    font-size: 18px;
}

.monster-drop {
    display: flex;
    flex-direction: column;
    width: calc((100% - 2rem) / 3);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(45deg, #151921, #1c2027);
    border: 2px solid #2b323f;
}

.monster-drop .monster-info {
    padding: 0.5rem;
    background: #2b323f;
}

.monster-drop .monster-drops {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.5rem;
}

.ko-tooltip-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ko-tooltip-item.highlight {
    animation: highlight-pulse 1s ease-in-out infinite;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes highlight-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255, 215, 0, 1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
}

@media only screen and (max-width: 992px) {
    .monster-drop {
        width: 100%;
    }

    .search-filters {
        flex-wrap: wrap;
    }

    .alert-result {
        margin-bottom: 1rem;
    }
}