/* Main menu container */
.riffy-twitter-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Menu item */
.riffy-twitter-menu-item {
    margin-bottom: 5px;
}

/* Menu item link */
.riffy-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    padding: 10px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.riffy-menu-link:hover {
    background-color: rgba(242, 29, 29, 0.1);
}

/* Active menu item */
.riffy-twitter-menu-item.active .riffy-menu-link {
    font-weight: bold;
    color: #ed1c24;
}

/* Icon container */
.riffy-menu-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    margin-right: 20px;
    position: relative;
}

/* SVG icon */
.riffy-menu-icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

/* Menu item text */
.riffy-menu-item-text {
    flex-grow: 1;
}

/* Notification badge */
.riffy-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ed1c24;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 8px;
    text-align: center;
}

.rifnote-reads-toggle {
    display: block;
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    background-color: #ed1c24;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.rifnote-reads-content {
    margin-top: 10px;
    max-height: 100vh;
    overflow-y: scroll;
}

.rifnote-read-item {
    margin-bottom: 10px;
    padding: 5px;
    background-color: #f8f8f8;
    border-radius: 10px;
    color: #ed1c24;
}

.rifnote-reads-content ul li {
    margin-bottom: 0px !important;
}

.rifnote-reads-content ul li a {
    margin-bottom: 5px;
    padding: 5px;
    font-size: 15px;
    color: #0e0e0e;
    text-decoration: none;
    line-height: 1em;
}

.rifnote-reads-content ul li a:hover {
    color: #ed1c24;
    text-decoration: underline;
}