.d-ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* or any height */
}


.bg-color {
    background: #b4edfa;
}


.auth-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    /* Similar to your 'shado' class */
    margin-top: 160px;
    margin-bottom: 50px;
}

.auth-wrapper .auth-header h3 {
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.auth-wrapper .auth-header p {
    color: #838383;
    margin-bottom: 30px;
}

.auth-wrapper .form-group {
    margin-bottom: 20px;
}

.auth-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

/* Input styling matching your search/qty inputs */
.auth-wrapper .form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.auth-wrapper .form-control-custom:focus {
    border-color: #0d6efd;
    /* Adjust to your brand color */
    background-color: #fff;
    outline: none;
}

/* Button styling matching your 'Buy Now' buttons */
.auth-wrapper .btn-auth {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #127FFF 0%, #0067FF 100%);
    /* Example Blue */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.auth-wrapper .btn-auth:hover {
    opacity: 0.9;
}

.auth-wrapper .social-login {
    margin-top: 25px;
    text-align: center;
}

.auth-wrapper .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    margin: 0 5px;
    transition: 0.3s;
    text-decoration: none;
}

.auth-wrapper .social-btn:hover {
    background: #e1e1e1;
    color: #000;
}

.auth-wrapper .divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-wrapper .divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    position: relative;
    z-index: 1;
}

.auth-wrapper .divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 0;
}

/* profile page */
.profile-area {
    margin-top: 160px;
}

.profile-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Sidebar Styling */
.profile-sidebar-header {
    padding: 30px 20px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: #e1e1e1;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #555;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    border-bottom: 1px solid #f1f1f1;
}

.profile-menu li:last-child {
    border-bottom: none;
}

.profile-menu a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.profile-menu a i {
    width: 25px;
    color: #999;
}

.profile-menu a:hover,
.profile-menu a.active {
    background: #f0f7ff;
    /* Light Blue background */
    color: #0d6efd;
    /* Your primary blue */
    border-left: 3px solid #0d6efd;
}

.profile-menu a:hover i,
.profile-menu a.active i {
    color: #0d6efd;
}

/* Content Area */
.profile-content {
    padding: 30px;
    min-height: 400px;
}

.profile-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Stat Cards for Dashboard */
.stat-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.stat-card h2 {
    font-weight: 700;
    color: #0d6efd;
}

.stat-card p {
    margin: 0;
    color: #666;
}