body {
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: url('/static/images/background.jpeg');*/
    background-color: white;
    background-size: cover;
    /*opacity: 0.9;*/
    z-index: -1;
}
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator, .htmx-request.htmx-indicator {
    display: inline-block;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #22a7f0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.htmx-request .htmx-indicator-spin {
    animation: spin 1s linear infinite;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
