body{
    font-family: 'Vazirmatn' !important;
}
.user-message {
    background-color: #3b82f6;
    color: white;
    border-radius: 1rem 1rem 0 1rem;
    max-width: 70%;
    margin-left: auto;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.assistant-message {
    background-color: #e5e7eb;
    color: #1f2937;
    border-radius: 1rem 1rem 1rem 0;
    max-width: 70%;
    margin-right: auto;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.conversation-item:hover {
    background-color: #f3f4f6;
    cursor: pointer;
}

.conversation-item.active {
    background-color: #dbeafe;
    font-weight: bold;
}

.user-message {
    background-color: #2563eb;
    color: #f9fafb;
}

.assistant-message {
    background-color: #4b5563;
    color: #e5e7eb;
}

.conversation-item:hover {
    background-color: #2d79f3;
    color: #f9fafb;
}

.conversation-item.active {
    background-color: #2563eb;
    color: #f9fafb;
}

#errorModal {
    display: none;
}

#errorModal.show {
    display: flex;
}


.logo {
    margin: auto;
    padding-bottom: 20px;
}