﻿
/* Toolbar Dropdown Styling */
.smart-editor-toolbar .smart-editor-dropdown {
    display: inline-block !important;
    width: auto !important; /* Prevent full width */
    max-width: 150px;
    padding: 4px 8px;
    margin: 0 5px;
    background-color: transparent; /* No background */
    border: none !important; /* Remove border */
    font-size: 14px;
    vertical-align: middle; /* Align with other icons */
    box-sizing: border-box;
    cursor: pointer;
}

/* Add separator line before dropdown */
.smart-editor-toolbar .custom-separator {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #ccc;
    margin: 0 8px;
    vertical-align: middle;
}

/* Hover and focus effects for better interaction */
.smart-editor-toolbar .smart-editor-dropdown:hover,
.smart-editor-toolbar .smart-editor-dropdown:focus {
    background-color: #f0f0f0;
}


.custom-tag {
    background-color: #e0f7fa;
    padding: 3px 6px;
    border-radius: 3px;
    color: #00796b;
    font-weight: bold;
}
