:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-tertiary: #e5e7eb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --accent-color: #36011f;
    --accent-hover: #4d022b;
    --accent-rgb: 54, 1, 31;
    --danger: #ef4444;
    --success: #22c55e;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(229, 231, 235, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body.dark-mode {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --accent-color: #60a5fa;
    --accent-hover: #3b82f6;
    --accent-rgb: 96, 165, 250;
    --glass-bg: rgba(17, 24, 39, 0.95);
    --glass-border: 1px solid rgba(55, 65, 81, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
}


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

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

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}


.left-div .tabs {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-primary);
    display: flex;
    padding: 5px 15px 15px 15px;
    border-bottom: 1px solid var(--bg-tertiary);
    margin-bottom: 0 !important;
    gap: 8px;
}

.left-div .tab-btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    flex: 1;
    transition: var(--transition);
}

.left-div .tab-btn:hover {
    color: var(--text-primary) !important;
    background-color: var(--bg-secondary) !important;
}

.left-div .tab-btn.active {
    color: white !important;
    background-color: var(--accent-color) !important;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.25);
}

.conversation-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.conversation-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 2px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.conversation-item:hover {
    background: var(--bg-secondary);
    transform: translateX(2px);
}

.conversation-item.active {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.1);
}

.conversation-item.active::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: var(--accent-color);
    border-radius: 4px;
}

.conversation-item:hover .close-chat-btn {
    opacity: 1 !important;
}

.close-chat-btn:hover {
    color: var(--danger) !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e7ff;
    /* Light indigo */
    color: var(--accent-color);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    border: 2px solid var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.status-indicator {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    border: 2px solid var(--bg-primary);
}

.status-indicator.online {
    background: var(--success);
}

.avatar-small {
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-primary);
}

.btn-action:hover {
    background: var(--bg-tertiary) !important;
    transform: translateY(-2px);
}

.btn-remove:hover {
    color: white !important;
    background: var(--danger) !important;
}

.btn-promote:hover {
    color: white !important;
    background: var(--success) !important;
}

.btn-demote:hover {
    color: white !important;
    background: var(--danger) !important;
}

.conversation-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-right: 5px;
}

.conversation-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-last-msg {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
    margin-top: 2px;
}

.conversation-item.active .conversation-last-msg {
    color: #4b5563;
    font-weight: 500;
}

.conversation-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    margin-left: 10px;
    align-self: flex-start;
    padding-top: 2px;
}

.conversation-meta .time {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

.unread-badge {
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Main */
.chat-toolbar {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--bg-tertiary);
    padding: 0 15px;
    height: 70px;
    flex-shrink: 0;
    z-index: 100;
}

.chat-header {
    height: 70px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--bg-tertiary);
    z-index: 10;
}


.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.msg-search-bar {
    padding: 12px 25px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--bg-tertiary);
    display: none;
    flex-shrink: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    padding: 8px 18px;
    border-radius: 20px;
    gap: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    background: var(--bg-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    outline: none;
    font-size: 0.9rem;
}

#close-msg-search {
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#close-msg-search:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 25px 25px 90px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
    min-height: 0;
}

.empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
    text-align: center;
}

.typing-indicator {
    padding: 10px 25px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.message {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.2s ease;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.message:has(.message-actions) {
    margin-bottom: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.sent {
    align-self: flex-end;
    background: var(--accent-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.received {
    align-self: flex-start;
    background: var(--bg-primary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--bg-tertiary);
}

.message.sent:hover {
    background: var(--accent-hover);
}

.message-actions {
    position: absolute;
    top: -25px;
    right: 5px;
    display: none;
    gap: 8px;
    z-index: 100;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.message:hover .message-actions {
    display: flex;
}

.msg-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.msg-action-btn i {
    pointer-events: none;
    font-size: 0.95rem;
}

.msg-action-btn.edit-btn:hover {
    background: #3b82f6;
    /* Bright blue */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.msg-action-btn.delete-btn:hover {
    background: #ef4444;
    /* Bright red */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.message-time {
    font-size: 0.65rem;
    opacity: 0.8;
    margin-top: 2px;
    text-align: right;
    display: block;
}

.message.received .message-time {
    color: var(--text-secondary);
}

.typing-dots {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    margin-left: 5px;
}

.typing-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.input-area {
    padding: 10px 25px;
    background: var(--bg-primary);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 77%;
    z-index: 100;
}

.input-pill {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 10px;
    gap: 5px;
    border: 1px solid transparent;
    transition: var(--transition);
    width: 100vw;
}

.input-pill:focus-within {
    background: var(--bg-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.icon-btn {
    background: var(--bg-secondary);
    border: none;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.icon-btn:hover {
    background: rgb(226, 206, 206);
    color: var(--accent-color);
}

.send-icon {
    color: var(--accent-color);
}

.textarea-cs {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 5px;
    color: var(--text-primary);
    resize: none;
    height: 44px;
    min-height: 24px;
    max-height: 120px;
    line-height: 24px;
    font-size: 0.95rem;
    outline: none !important;
    font-family: inherit;
    overflow-y: auto;
    transition: height 0.1s ease;
}

.textarea-cs:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.chat-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#info-btn i {
    color: #f97316;
    /* Vibrant Orange for visibility */
    font-size: 1.3rem;
}

#info-btn:hover {
    background: rgba(249, 115, 22, 0.1);
}

#info-btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0 24px;
    height: 48px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.4);
}

/* Modal */
/* Modal */
.chat-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: var(--bg-primary);
    padding: 30px;
    border: 1px solid var(--bg-tertiary);
    width: 450px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideIn 0.2s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-primary);
}

.chat-modal h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--bg-tertiary);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--accent-color);
}

.tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.form-input {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--bg-tertiary) !important;
}

.form-input:focus {
    border-color: var(--accent-color) !important;
    outline: none;
}

#user-search,
#group-name,
#group-user-search,
#edit-group-name {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 15px;
}

#user-search:focus,
#group-name:focus,
#group-user-search:focus {
    outline: none;
    background: var(--bg-primary);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#user-search-results,
#group-members-selection {
    max-height: 250px;
    background: var(--bg-primary);
    border: none;
    /* Removed border as requested */
    border-radius: 8px;
    overflow-y: auto;
}

.user-result-item,
.user-check-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--bg-tertiary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.user-result-item:hover,
.user-check-item:hover {
    background: var(--bg-secondary);
}

.user-result-item:last-child,
.user-check-item:last-child {
    border-bottom: none;
}



.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d1d5db;
}

.chat-modal {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Group Management Styles */
.participants-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.participant-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    gap: 12px;
}

.participant-item:hover {
    background: var(--bg-secondary);
}

.participant-info {
    flex: 1;
}

.participant-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.participant-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.participant-actions {
    display: flex;
    gap: 5px;
}

.participant-actions button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.8rem;
}

.promote-btn:hover {
    background: var(--success) !important;
    color: white !important;
}

.demote-btn:hover {
    background: var(--danger) !important;
    color: white !important;
}

.remove-btn:hover {
    background: var(--danger) !important;
    color: white !important;
}

.add-participant-trigger {
    cursor: pointer;
    border: 1px dashed var(--accent-color);
    margin-bottom: 15px;
    background: rgba(59, 130, 246, 0.05) !important;
}

.add-participant-trigger:hover {
    background: rgba(59, 130, 246, 0.1) !important;
}

.sub-modal {
    z-index: 10001 !important;
}

.sub-modal .modal-content {
    width: 400px;
}

.close-sub-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

.selection-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.selection-item:hover {
    background: var(--bg-secondary);
}

.selection-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.results-list {
    max-height: 300px;
    overflow-y: auto;
}

.avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-primary#send-btn {
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 50%;
}

.attachment-btn {
    width: 36px;
    height: 36px;
}

.glass {
    backdrop-filter: blur(10px);
    background: var(--glass-bg) !important;
    border: var(--glass-border) !important;
}

.section-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 15px 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-width {
    width: 100%;
}

.inline-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.inline-form input {
    flex: 1;
    margin-bottom: 0 !important;
}

.btn-sm {
    padding: 0 15px !important;
    width: auto !important;
    height: 38px !important;
}

.modal-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-tertiary);
}

.btn-danger-outline {
    background: rgba(239, 68, 68, 0.05);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.btn-danger-outline:hover {
    background: var(--danger);
    color: white;
}

.tiny-modal {
    width: 350px !important;
    text-align: center;
}

.warning-icon {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 15px;
}

.modal-actions-grid {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.chat-modal {
    z-index: 99999 !important;
}

.modal-content {
    z-index: 100000 !important;
}

/* Message Media & Attachments */
.chat-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 8px;
    display: block;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.chat-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.file-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.file-msg i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.file-msg a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.file-msg a:hover {
    color: var(--accent-color);
}

.edit-textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--bg-tertiary);
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin-bottom: 15px;
    resize: vertical;
    font-family: inherit;
    font-size: 0.95rem;
}

.edit-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* User Profile Toolbar Styles */
.user-profile-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 5px;
}

.user-details-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.user-name-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.user-status-tag {
    font-size: 0.7rem;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}