/* CCS HASTHTAG- NOTIFICATIONS */

.form-group.blctxtcomment {position: relative;}
#hashtaglst {position: absolute;left: 50px;top: 50px;background: #fff;z-index: 9;border: solid 1px #eee;padding: 5px 0;border-radius: 5px;box-shadow: 0 0 2px #eee;max-height: 300px;overflow-y: scroll;}
#hashtaglst ul {list-style: none;padding: 0;margin: 0;}
#hashtaglst ul li {padding: 5px 10px;border-bottom: solid 1px #eee;cursor: pointer;}
#hashtaglst ul li.lisel, #hashtaglst ul li:hover {background-color: #eee;}

.sidebarnotif{
    height: calc(100vh - 50px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#unread-notifs-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.sidebarnotif .alert {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Read notifications section */
#read-notifs-section {
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#read-notifs-list {
    max-height: 350px;
    overflow-y: auto;
}

#toggle-read-notifs {
    display: block;
    padding: 8px 10px;
    color: #aab2bd;
    font-size: 12px;
    background-color: #2c3044;
    text-decoration: none;
}

#toggle-read-notifs:hover {
    background-color: #394263;
    color: #fff;
    text-decoration: none;
}

#read-notifs-chevron {
    margin-right: 6px;
    transition: transform 0.2s ease;
}

#read-notifs-chevron.open {
    transform: rotate(90deg);
}

#read-notifs-list .sidebar-section .alert {
    opacity: 0.6;
}

#read-notifs-list .sidebar-section:hover .alert {
    opacity: 0.85;
}