/* Fixed navbar adjustments */
.layout-navbar.fixed-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Add top padding to content when navbar is fixed */
.layout-page {
    padding-top: 70px;
}

/* Notification badge styling */
.badge-notifications {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0;
    font-size: 9px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    padding: 0;
}

/* Notification dropdown styling */
.dropdown-notifications {
    width: 55px;
    max-height: 400px;
}

.dropdown-notifications-list {
    max-height: 250px;
    overflow-y: auto;
}

.dropdown-notifications-item {
    padding: 1rem;
    border: none;
    transition: background-color 0.15s ease-in-out;
}

.dropdown-notifications-item:hover {
    background-color: rgba(67, 89, 113, 0.04);
}

.scrollable-container {
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.scrollable-container::-webkit-scrollbar {
    width: 6px;
}

.scrollable-container::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-container::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}