#inboxDropdown .inbox-dropdown {
    width: 450px;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #fff;
    border: none;
    padding: 0 0 10px;
}

#inboxDropdown .inbox-header {
    padding: 20px 15px !important;
    position: sticky;
    top: 0;
    z-index: 10;
    border: none !important;
    background-color: #fff;
}

#inboxDropdown .title-header {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-style: normal;
    padding-left: 10px;
    font-weight: 600;
    color: #767676;
}

#inboxDropdown .inbox-body-scroll {
    max-height: 450px;
    overflow-y: auto;
}

/* Hide scrollbar */
#inboxDropdown .inbox-body-scroll::-webkit-scrollbar {
    display: none;
}

#inboxDropdown .inbox-message-list {
    margin: 0;
    padding: 0;
}

#inboxDropdown .message-preview {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    background-color: #ffffff;
    transition: background-color 0.5s ease;
}

#inboxDropdown .message-preview:hover {
    background-color: #f0f0f0;
}

#inboxDropdown .media {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#inboxDropdown .media-left img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #ccc;
}

#inboxDropdown .media-body {
    flex-grow: 1;
}

#inboxDropdown .media-body p {
    margin: 5px 0;
    font-size: 13px;
    color: #333;
}

#inboxDropdown .media-body strong {
    display: block;
    font-size: 14px;
    color: #000;
}

#inboxDropdown .text-muted {
    font-size: 11px;
    color: #999;
}

.unread {
    font-weight: bold;
    color: #000000 !important;
    background-color: #f0f0f0 !important;
}

.inbox-message-list .no-message {
    padding: 20px;
    color: #888;
    font-style: italic;
}