/* Hex-Conquest – Karten-Widget */

.emove-hex-widget {
    position: relative;
    width: 100%;
}

#emove-hex-map {
    border-radius: 6px;
    overflow: hidden;
}

/* Header mit Filtern und Zähler */
.em-hex-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.em-hex-filters {
    display: flex;
    gap: 6px;
}

.em-hex-filter {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.em-hex-filter:hover {
    border-color: rgba(0,0,0,0.3);
    color: #333;
}

.em-hex-filter--active {
    background: #ff5030;
    border-color: #ff5030;
    color: #fff;
    font-weight: 500;
}

.em-hex-stats {
    margin-left: auto;
    font-size: 13px;
    color: #666;
}

.em-hex-count strong {
    color: #ff5030;
    font-weight: 600;
}

/* Tooltip */
.emove-hex-tooltip {
    display: none;
    position: absolute;
    z-index: 20;
    background: rgba(18, 18, 24, 0.92);
    color: #f0f0f0;
    border-radius: 6px;
    padding: 8px 12px;
    pointer-events: none;
    min-width: 90px;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.4;
}

.emove-hex-tt-initials {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.emove-hex-tt-name {
    font-size: 0.8rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.emove-hex-tt-date {
    font-size: 0.72rem;
    color: #888;
    margin-top: 2px;
}

/* Admin-Panel */
.emove-hex-admin {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px 24px;
    max-width: 600px;
}

.emove-hex-admin h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.emove-hex-admin-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #555;
}

.emove-hex-admin-stats strong {
    font-size: 1.1rem;
    color: #111;
}

.emove-hex-admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* Fortschrittsbalken */
.emhxa-progress-bar-wrap {
    background: #e0e0e0;
    border-radius: 4px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.emhxa-progress-bar {
    height: 100%;
    background: #4a90d9;
    border-radius: 4px;
    transition: width 0.25s ease;
}

#emhxa-status {
    font-size: 0.82rem;
    color: #555;
    margin: 4px 0 0;
}
