input {
    margin-right: 22px;
}

.no-results-image {
    cursor: default;
    background: url("/zadania-zawodowe/SVG/black-hole.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
    border-radius: var(--btn-radius);
    user-select: none;
    -webkit-user-select: none;
    animation: blackHoleSpin 128s linear infinite;
}

@keyframes blackHoleSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}