/* ================================
   EXPANSA — CLEAN UI PANEL SYSTEM
================================ */

/* Bottom panel base */
#expansa-bottom-panel {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    background: rgba(6,18,12,0.88);
    border-top: 1px solid #1a3;
    backdrop-filter: blur(3px);

    padding: 8px 12px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    color: #9ae6b4;
    font-family: ui-monospace, monospace;
    font-size: 12px;

    z-index: 9999;
}

/* rows */
.bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
}

/* Row 1 = left aligned */
#row-status {
    justify-content: flex-start;
}

/* Row 2 = left aligned clean */
#row-actions {
    justify-content: flex-start;
    gap: 8px;
}

/* ============================================
   Atlas-style button (no images, clean crisp)
=============================================== */
.atlas-btn {
    padding: 3px 8px;

    background: rgba(0,0,0,0.45);
    border: 1px solid #1a3;

    color: #9ae6b4;
    font-size: 11px;

    cursor: pointer;
    user-select: none;

    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.atlas-btn:hover {
    filter: brightness(1.25);
}
