#custom-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spinner-logo {
    width: 120px;
    height: auto;
}

.platform-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-top: -10px;
    margin-bottom: 10px;
}

.spinner-text {
    font-size: 1rem;
    color: #666;
}

.spinner-animation {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.conversation-container::-webkit-scrollbar {
    width: 8px;
}

.conversation-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.conversation-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.conversation-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* legal-document styling */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.legal-document h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-document h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-document p,
.legal-document li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #7f8c8d;
}


/* Style pour Chrome, Safari, Edge */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#1a237e, #ffffff, #1a237e);
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#0d1540, #ffffff, #0d1540);
}

/* Style pour Firefox */
html {
    scrollbar-color: #1a237e #f1f1f1;
    scrollbar-width: thin;
}

/* styles/app.css */
#block-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#block-overlay img {
    height: 80px;
    margin-bottom: 20px;
}

#block-overlay h1 {
    color: #333;
    margin-bottom: 20px;
}

#block-overlay .alert-box {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 15px;
    margin-bottom: 20px;
}

#block-overlay .alert-box h2 {
    color: #dc3545;
    margin-top: 0;
}