 

.dash-sidebar {
    width: 250px;
    background-color:#2399b4; /* dark slate */
    color: white;
    min-height: 300px;
    padding: 20px 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    
 
}

.dash-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-links ul li {
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.dash-links ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}
.dash-likns ul li.active {
    background-color: white;
}

.dash-links  ul li.active a {
	background-color: white;
    color: #2399b4;
    font-weight: bold;
}


.dash-links ul li a span {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.dash-links ul li a span img {
    width: 20px;
    height: 20px;
}

.dash-links ul li.disabled a {
    background-color: #fff;
    color: #9ca3af;
    cursor: default;
}


.wishlist-container {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.wishlist-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    gap: 20px;
    flex-wrap: wrap;
}

.wishlist-item img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.item-details p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive for tablets */
@media (max-width: 768px) {
    .wishlist-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wishlist-item img {
        width: 100px;
    }

    .item-details h2 {
        font-size: 18px;
    }

    .remove-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}



@media (max-width: 768px) {
    .dash-sidebar {
        position: absolute;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dash-sidebar.open {
        transform: translateX(0);
    }
	    .main-layout {
        flex-direction: column;
    }

    .dash-sidebar {
        width: 100%;
    }

    .dash-content {
        width: 100%;
    }
}

.main-layout {
    display: flex;
    min-height: 400px;
}

/* Sidebar already defined earlier */

/* Main content next to sidebar */
.dash-content {
    flex: 1;
    padding: 30px;
    background-color: #f9fafb; /* light background */
    overflow-x: hidden;
}


/* 👇 Sidebar toggle button looks like menu item */
.sidebar-toggle {
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 12px;
    display: none !important; /* hidden by default */
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: inline-block!important;
    }

    .nav-items {
        display: none; /* Optional: hide other navs on mobile */
    }
}



/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


