
  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}
.db-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    /* Gradient purple background */
    background: linear-gradient(135deg, #6A00FF, #B620E0, #651FFF);
    background-size: cover;
    background-position: center;
    padding: 20px;
}

/* Glass-card wrapper */
.wrapper {
    width: 420px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 35px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    color: #fff;
    animation: fadeIn 0.8s ease-in-out;
}

.wrapper h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

/* Input Container */
.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 52px;
    margin: 28px 0;
}

/* Square Inputs */
.input-box input {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 6px; /* Square look */
    font-size: 16px;
    color: #fff;
    padding: 18px 50px 18px 18px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.input-box input:focus {
    border-color: #D7B5FF;
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 4px 12px rgba(145, 95, 255, 0.4);
}

.input-box input::placeholder {
    color: #e7e0ff;
}

/* Icons */
.input-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.8;
    color: #ffffff;
}

/* Login Button */
.wrapper .btn {
    width: 100%;
    height: 46px;
    border-radius: 6px; /* square button */
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ffffff, #e7d9ff);
    box-shadow: 0 6px 18px rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 17px;
    color: #4A0082;
    font-weight: 700;
    transition: 0.3s ease;
}

.wrapper .btn:hover {
    background: #fff;
    box-shadow: 0 6px 22px rgba(255,255,255,0.5);
}

/* Small fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.retail-title {
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-top: 18px;
    position: relative;
}

.retail-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a66bff, #e6d9ff);
    display: block;
    margin: 6px auto 0 auto;
    border-radius: 2px;
}



body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.card {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-picture {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 24px;
  margin: 0;
}

.username {
  font-size: 18px;
  color: #777;
  margin: 10px 0;
}

.tagline,
.description {
  color: #555;
  margin: 10px 0;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #0056b3;
}


/* The Modal (background) */
.App-Window {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background:#ffff;
  animation: fadeEffect 0.7s; /* Fading effect takes 1 second */
}

.modal-content{
	height:100%;
	width:100%;
}

/* The Close Button */
.close {
	position:absolute;
	top:0;
	left:0;
	color: #2E277E;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor:pointer;
}

.left-pane{
	float:left;
	height: 100vh; /* For 100% screen height */
	width:18%;
	background:url(https://img.freepik.com/free-photo/ultra-detailed-nebula-abstract-wallpaper-4_1562-749.jpg?size=626&ext=jpg&ga=GA1.1.2116175301.1701475200&semt=ais);
    background-size: cover;
	text-align:center;
	color:#fff;
}

.right-pane{
	
	float:left;
	height:100%;
	width:82%;
	background:#fff;
}

.left-pane > div{
	padding-bottom:17px;
	padding-top:17px;
	font-size:13px;
	font-weight:600;
	text-align:center;
	cursor:pointer;
	border-top-left-radius: 50px 50px;
	border-bottom-left-radius: 50px 50px;
	animation: fadeEffect 0.7s; /* Fading effect takes 1 second */
}


.left-pane > div:hover{
	background:#fff;
	color:black;
	opacity: 0.4;
}



.admin-dashboard-window{
	animation: fadeEffect 0.7s; /* Fading effect takes 1 second */
	padding:10px;
}

.heading{
	position:relative;
}

.my-profile-btn{
	position:absolute;
	top:0;
	right:0;
	margin:3px;
	cursor:pointer;
}

.logout-back-btn{
	position:absolute;
	top:0;
	left:0;
	margin:3px;
	cursor:pointer;	
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.dh-custom-table-row{
	border-bottom:1px solid black;
	padding-top:7px;
	padding-bottom:7px;
}

.dh-custom-table-row:hover{
	background:#FFC300;
	cursor:pointer;
}

#NeighbourhoodShop div .row:hover{
	background:#DAF7A6;
	cursor:pointer;
}

#ModernTrade div .row:hover{
	background:#DAF7A6;
	cursor:pointer;
}

#OpenMarket div .row:hover{
	background:#DAF7A6;
	cursor:pointer;
}

#Specialized div .row:hover{
	background:#DAF7A6;
	cursor:pointer;
}

.van-banner-wrapper{}

.van-banner{
	height:160px;
	width:100%;
}

.van-banner img{
	height:100%;
	width:100%;
	object-fit:cover;
}