.footer-font-size{
    font-size: 11pt;
}

.navigation_profile{
    color: #333;
}

img.user_avatar{
    max-width: 180px;
    max-height: 180px;
}

body{
    background-color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
}

/* Floating Feedback Button */
.floating-feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}

.floating-feedback-btn button {
    width: 60px;
    height: 60px;
    border: none;
    transition: all 0.3s ease;
}

.floating-feedback-btn button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3) !important;
}

/* BBCode Blockquote Styling */
blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 12px 16px;
    margin: 12px 0;
    border-radius: 4px;
    font-style: italic;
    color: #495057;
}

blockquote .author {
    font-weight: bold;
    font-style: normal;
    color: #0d6efd;
    display: block;
    margin-bottom: 6px;
}

/* Notification dot indicator */
.notification-indicator {
    position: relative;
    display: inline-block;
}

.notification-indicator::after {
    content: '';
    position: absolute;
    top: 0px;
    right: -4px;
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #fff;
}

/* OpenMoji Emoticon Dropdown Styling */
.sceditor-emoticons,
.sceditor-more-emoticons {
    display: flex !important;
    flex-wrap: wrap !important;
    max-width: 400px !important;
    padding: 8px !important;
    gap: 4px !important;
}

/* Emoticon images in dropdown */
.sceditor-emoticons img,
.sceditor-more-emoticons img {
    width: 32px !important;
    height: 32px !important;
    padding: 4px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease !important;
}

.sceditor-emoticons img:hover,
.sceditor-more-emoticons img:hover {
    background-color: #e9ecef !important;
}

/* Emoticon container divs */
.sceditor-emoticons > div,
.sceditor-more-emoticons > div {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}

/* More link styling */
.sceditor-more {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 8px !important;
    margin-top: 8px !important;
    color: #0d6efd !important;
    text-decoration: none !important;
    border-top: 1px solid #dee2e6 !important;
}

.sceditor-more:hover {
    background-color: #f8f9fa !important;
    text-decoration: underline !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
    .sceditor-emoticons,
    .sceditor-more-emoticons {
        max-width: 280px !important;
    }
    
    .sceditor-emoticons img,
    .sceditor-more-emoticons img {
        width: 28px !important;
        height: 28px !important;
    }
}
/* OpenMoji Emoji Styling in Posts (rendered content) */
img.emoji {
    width: 1.5em !important;
    height: 1.5em !important;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0.1em;
}
