/**
 * ZSIP Zielona Góra - Responsive Breakpoint Visualizer Styles
 */

#breakpoint-indicator {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
    z-index: 9999;
    user-select: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#breakpoint-indicator:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

#breakpoint-indicator strong {
    font-weight: bold;
}

/* Custom animation when breakpoint changes */
@keyframes breakpoint-change {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.breakpoint-changed {
    animation: breakpoint-change 0.3s ease;
}