/* style.css */

body {
    background-color: #5F5D5F;
}

/* Glassmorphism Effect */
.bg-gray-800 {
    background: rgba(77, 76, 77, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #4D4C4D;
}

::-webkit-scrollbar-thumb {
    background: #673267;
    border-radius: 4px;
}

/* Quill Editor Styling */
.ql-toolbar {
    border-bottom: 1px solid #534653 !important;
}

.ql-container {
    border: none !important;
}

.ql-editor {
    color: white;
}