<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes riseAndFallRotate {
    0%, 100% {
        transform: translateY(0) rotate(18deg);
    }

    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

.gavel-animation #gavel {
    animation: riseAndFallRotate 1.5s ease-out infinite;
    transform-origin: bottom left; /* Adjusts the origin of rotation */
    width: 75px;
    color: rgb(26 40 72 / var(--tw-text-opacity));
}

.container {
    display: flex;
    align-items: center; /* Centers the items vertically */
}

.loading-text {
    flex-grow: 1; /* Allows this div to take up the remaining space */
    padding-right: 20px; /* Adds some spacing between the text and the gavel */
}

.gavel-animation {
    width: 100px; /* Width set as requested */
    padding-top: 10px;
}

    .gavel-animation svg {
        width: 100%;
        height: auto;
    }
</pre></body></html>