/**
 * Minimized Panel Dot Styles
 *
 * Simple colored dots in the site footer spacer area
 * (between "Powered by talw.media" and "Pricing").
 */

/* =============================================================================
   CONTAINER - FOOTER SPACER
   Fills the center of the footer, holds minimized panel dots
   ============================================================================= */

.footer-spacer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 24px;
    padding: 0 16px;
}

/* =============================================================================
   MINIMIZED DOT
   Small colored circle representing a minimized panel
   ============================================================================= */

.minimized-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;

    /* Start invisible for entrance animation */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.15s ease;
}

/* Visible state (applied after render via JS) */
.minimized-dot.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Hover - grow and glow */
.minimized-dot:hover {
    transform: scale(1.4);
    box-shadow: 0 0 8px 2px currentColor;
}

/* Active/pressed state */
.minimized-dot:active {
    transform: scale(1.1);
}

/* Removing animation */
.minimized-dot.is-removing {
    opacity: 0;
    transform: scale(0.5);
}

/* Optional: pulsing indicator for panels with unsaved changes */
.minimized-dot.is-dirty {
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; }
    50% { box-shadow: 0 0 6px 2px currentColor; }
}
