/* ========== СЕЛЕКТОР ЭМБЛЕМ ========== */
.badge-selector-hint {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.selected-badges-preview {
    margin-bottom: 25px;
}

.selected-badges-preview h3 {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.badges-preview-slots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.badge-preview-slot {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    cursor: pointer;
    transition: all 0.2s;
}

.badge-preview-slot:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.badge-preview-slot .badge-empty {
    color: #ccc;
    font-size: 1.5em;
}

.available-badges {
    margin-bottom: 20px;
}

.available-badges h3 {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.badge-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.badge-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-grid-item.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea10, #764ba210);
}

.badge-grid-item .badge-icon {
    font-size: 2em;
    margin-bottom: 5px;
}

.badge-grid-item .badge-name {
    font-size: 0.75em;
    text-align: center;
    color: #555;
}
