<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#webpage nav {
    border-bottom: 0.5px solid #ACACAC;
    display: flex;
    padding: 0px;
    max-width: 1440px;
    align-self: center;
}
#webpage .navbar-container {
    display: flex;
    padding: 26px 32px 22px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 0.5px solid #ACACAC;
}
#webpage .navbar-content {
    display: flex;
    gap: 16px;
    align-items: center;
}
.navbar-bell {
    position: relative; 
    display: inline-block;
  }
.nav__bell {
    display: block;
    transition: 0.3s;
 
}
.notification-badge {
    position: absolute;
    top: -5px; 
    right: -5px; 
    background-color: #BC2234; 
    color: white; 
    border-radius: 50%; 
    width: 16px; 
    height: 17px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding-left: 1px;
    font-size: 9px;
    font-family: "Manrope-Medium", "sans-serif";
    letter-spacing: 0%;
}

.navbar-bell:hover {
    filter: invert(1);
    transition: 0.3s;
}
.dropdown-nav {
    position: relative;
    display: inline-block;
}
#webpage .def-btn {
    border-radius: 8px;
    padding: 9.5px 16px;
    font-size: 13px;
    font-family: "Manrope-Medium", 'sans-serif';
    background-color: #303341 ;
} 
.dropdown-btn {
    color: white;
    border: none;
    cursor: pointer;
}
#webpage .def-btn:hover {
    background-color: white;
    /*box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), */
    /*            inset 0 2px 4px rgba(0, 0, 0, 0.05);*/
    color: #BC2234;
}
.dropdown-btn.active {
    background-color: red;
    color: white;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #23252F;
    min-width: 250px;
    padding: 24px 16px;
    color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    right: 0;
    top: 50px;
    border-radius: 8px;
}

.dropdown-content a {
    padding: 8px 8px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    align-items: center;
    font-size: 15px;
    font-family: "Manrope-ExtraLight", 'sans-serif';
}
.dropdown-content img {
    margin-right: 8px;
    width: 15px;
    max-height: 16px;
}
.dropdown-content a:hover {
    background-color: #353744;
}
  
.show {
    display: block;
}
.notification-container {
    position: relative;
}
.notification-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 300px;
    display: none;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 7px;
}

.notification-item {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.notification-item.unread {
    font-weight: bold;
    background-color: #f9f9f9;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #b3001b;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    padding: 2px 5px;
}
</pre></body></html>