.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.user-greeting {
    color: #0F93FE;
    font-weight: 600;
    font-size: 15px;
}


.user-profile svg:first-of-type {
    margin-left: -2px;
    align-self: flex-start;
    margin-top: -2px;
}

.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive updates */
@media (max-width: 991px) {
    .user-profile {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .notification-icon {
        align-self: center;
    }
}

/* Points Button Dropdown Styles */
.points-btn.dropdown-toggle {
    position: relative;
}

.points-btn.dropdown-toggle::after {
    display: none;
}

.points-arrow {
    transition: transform 0.3s ease;
}

.points-btn[aria-expanded="true"] .points-arrow {
    transform: rotate(180deg);
}

.reward-dropdown-menu {
    min-width: 330px;
    padding: 0;
    border-radius: 8px;
    border: none !important;
    background: #FFF;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.24);
    margin-top: 8px;
}

.reward-dropdown-menu:hover {
    background-color: #fff !important;
}

.reward-dropdown-content {
    padding: 0;
}

.reward-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px dashed #b3e5fc;
    margin-bottom: 0;
}

.reward-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0F93FE;
}

.reward-close {
    font-size: 12px;
    opacity: 0.6;
}

.reward-close:hover {
    opacity: 1;
}

.reward-body {
    padding: 20px;
}

.points-display {
    display: flex;
    align-items: flex-start;
    gap: 12px;

}

.reward-coin-icon {
    width: 40px;
    height: 40px;
    margin-top: 4px;
    border-radius: 8.662px;
    background: #FFF;
    box-shadow: 0 0.722px 5.775px 0 rgba(0, 0, 0, 0.24);
}

.points-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.points-number {
    font-size: 24px;
    font-weight: 700;
    color: #0F93FE;
    margin: 0;
}

.points-text {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.progress-section {
    margin-bottom: 20px;
}

.reward-progress {
    height: 12px;
    background-color: #DBEFFF;
    border-radius: 36px;
    margin-bottom: 12px;
}

.reward-progress .progress-bar {
    background: #0F93FE;
    border-radius: 4px;
}

.spending-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #000;
}

.spent-amount,
.earned-amount {
    font-weight: 500;
}

.view-details-btn {
    background: #00A8E0;
    color: white;
    border: none;
    height: 40px;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.view-details-btn:hover {
    transform: translateY(-1px);
    color: white;
}

.view-details-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reward-dropdown-menu {
        min-width: 280px;
    }
}


.user-info {
    color: #0F93FE;
    font-size: 15px;
    font-weight: 500;
}

.user-dropdown-menu {
    border-radius: 8px;
    background: #FFF;
    border: none !important;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.24);

}

.user-dropdown-menu:hover {
    background-color: #fff !important;
}

.dropdown-item span {
    font-size: 13px;
    color: #313739;
    font-weight: 500;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .user-dropdown-menu {
        min-width: 250px;
        margin-top: 4px;
    }

    .user-greeting {
        display: none;
    }
}

/* Animation for dropdown */
.user-dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.user-dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}