
/* Karten */
.maps-count-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 24px;
}

.maps-category-list {
    margin-top: 20px;
}

.maps-category .category-header {
    gap: 14px;
}

.maps-category .category-title {
    flex: 1 1 auto;
    min-width: 0;
}

.map-category-count {
    color: var(--text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
    margin-left: auto;
}

.maps-category.command-category-open .bot-commands-grid {
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-top: 20px;
}

.maps-command-grid {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.map-command-card {
    align-items: flex-start;
}

.map-icon {
    width: 132px;
    height: 132px;
    object-fit: contain;
    flex: 0 0 132px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    background: rgba(0,0,0,0.20);
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.35));
}

.map-command-info {
    min-width: 0;
}

.map-command-info strong {
    line-height: 1.3;
}

.map-command-info > span {
    display: block;
    line-height: 1.45;
}

/* Flaggen-Test im Schiffsvergleich, aktuell live deaktiviert.
.compare-nation-flag {
    width: 25px;
    height: 18px;
    object-fit: cover;
    vertical-align: -3px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 2px;
    box-sizing: border-box;
    filter: saturate(0.8) brightness(0.6);
    transition: all 0.25s ease;
}

.compare-row:hover .compare-nation-flag {
    filter: saturate(1) brightness(1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}
*/

@media (max-width: 700px) {
    .map-category-count {
        display: none;
    }

    .maps-command-grid {
        grid-template-columns: 1fr;
    }

    .map-icon {
        width: 96px;
        height: 96px;
        flex-basis: 96px;
    }
}
