:root {
    --bs-primary: #135bec;
    --bs-primary-rgb: 19, 91, 236;
    --background-light: #f6f6f8;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background-light);
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    height: 100vh;
    background: white;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-link {
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-primary);
    font-weight: 700;
    transform: scale(1.1);
}

.nav-link.active {
    font-weight: 700;
}

/* Custom Cards */
.points-card {
    background-color: var(--bs-primary);
    color: white;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.progress {
    height: 1rem;
    border-radius: 1rem;
    background-color: #e9ecef;
}

.reward-card {
    min-width: 280px;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reward-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reward-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.main-content {
    min-height: 100vh;
    padding: 2.5rem;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


