/* ===== css/overlay.css ===== */

.overlay-panel {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 220px;
    background: rgba(12, 15, 20, 0.9);
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 12px;
    color: #c9d1d9;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #30363d;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.overlay-header span {
    font-weight: bold;
    color: #58a6ff;
    font-size: 14px;
}

.overlay-btn-group {
    display: flex;
    gap: 5px;
}

.icon-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #c9d1d9;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: #30363d;
    border-color: #58a6ff;
    color: white;
}

.info-row {
    font-size: 12px;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}