.clickable-row:hover {
    cursor: pointer;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.clock-pulse {
    animation: clockPulse 1.8s ease-in-out infinite;
}

@keyframes clockPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.retroboard-fab {
    position: fixed !important;
    bottom: 8px !important;
    right: 8px !important;
}

.retroboard-datagrid {
    padding: 16px 16px 80px 16px;
    margin: 16px 16px 16px 16px;
}