<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px; /* Adjust based on your needs */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

@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>