/* ========================================= */
/* UI ELEMENTS: Индикаторы и вспомогательные элементы интерфейса */
/* ========================================= */

/* Контейнер индикатора загрузки */
.upload-progress-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #252525;
    padding: 20px;
    border-radius: 4px;
    flex-grow: 1;
}

.upload-progress-text {
    font-size: 11px;
    color: #00ff88;
    margin-bottom: 8px;
    font-family: monospace;
}

/* Полоса прогресса */
.upload-progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #444;
    border-radius: 3px;
    overflow: hidden;
}

.upload-progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #00ff88;
    transition: width 0.1s linear;
}

/* Стилизация кнопок в UI панели */
#ui-panel button:hover { background: #444; }
#ui-panel button.danger:hover { background: #440000; }


/* --- МИНИ-КАРТА (ФОКУС!) --- */
#minimap-container {
    position: absolute; /* <-- САМОЕ ВАЖНОЕ! */
    bottom: 20px;       /* <-- Фиксирует снизу от края viewport */
    right: 20px;        /* <-- Фиксирует справа от края viewport */
    width: 200px;       /* <-- Ширина */
    height: 150px;      /* <-- Высота */
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid #333;
    border-radius: 6px;
    z-index: 100;       /* <-- Достаточно высокий Z-index */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

#minimap {
    width: 100%;
    height: 100%;
    display: block;
}
