@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

:root {
	--poppins: 'Poppins', sans-serif;
	--lato: 'Lato', sans-serif;

	--light: #F9F9F9;
	--blue: #3C91E6;
	--light-blue: #CFE8FF;
	--grey: #eee;
	--dark-grey: #AAAAAA;
	--dark: #342E37;
	--red: #DB504A;
	--yellow: #FFCE26;
	--light-yellow: #FFF2C6;
	--orange: #FD7238;
	--light-orange: #FFE0D3;
}

html {
	overflow-x: hidden;
	max-width: 2000px;
	margin-left: auto;
	margin-right: auto;
}

body.dark {
	--light: #0C0C1E;
	--grey: #060714;
	--dark: #FBFBFB;
}

body {
	background: var(--grey);
	overflow-x: hidden;
}





/* SIDEBAR */
#sidebar {
	position: fixed;
	top: 0;
	left: auto;
	width: 220px;
	height: 100%;
	background: var(--light);
	z-index: 2000;
	font-family: var(--lato);
	transition: .3s ease;
	overflow-x: hidden;
	scrollbar-width: none;
}
#sidebar::--webkit-scrollbar {
	display: none;
}
#sidebar.hide {
	width: 60px;
}
#sidebar .brand {
	font-size: 24px;
	font-weight: 700;
	height: 56px;
	display: flex;
	align-items: center;
	color: var(--blue);
	position: sticky;
	top: 0;
	left: 0;
	background: var(--light);
	z-index: 500;
	padding-bottom: 20px;
	box-sizing: content-box;
}
#sidebar .brand .bx {
	min-width: 60px;
	display: flex;
	justify-content: center;
}
#sidebar .side-menu {
	width: 100%;
	margin-top: 18px;
}
#sidebar .side-menu li {
	height: 48px;
	background: transparent;
	margin-left: 6px;
	border-radius: 48px 0 0 48px;
	padding: 4px;
}
#sidebar .side-menu li.active {
	background: var(--grey);
	position: relative;
}
#sidebar .side-menu li.active::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: -40px;
	right: 0;
	box-shadow: 20px 20px 0 var(--grey);
	z-index: -1;
}
#sidebar .side-menu li.active::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	bottom: -40px;
	right: 0;
	box-shadow: 20px -20px 0 var(--grey);
	z-index: -1;
}
#sidebar .side-menu li a {
	width: 100%;
	height: 100%;
	background: var(--light);
	display: flex;
	align-items: center;
	border-radius: 48px;
	font-size: 16px;
	color: var(--dark);
	white-space: nowrap;
	overflow-x: hidden;
}
#sidebar .side-menu.top li.active a {
	color: var(--blue);
}
#sidebar.hide .side-menu li a {
	width: calc(48px - (4px * 2));
	transition: width .3s ease;
}
#sidebar .side-menu li a.logout {
	color: var(--red);
}
#sidebar .side-menu.top li a:hover {
	color: var(--blue);
}
#sidebar .side-menu li a .bx {
	min-width: calc(60px  - ((4px + 6px) * 2));
	display: flex;
	justify-content: center;
}

#sidebar .side-menu.bottom li:nth-last-of-type(-n+2) { /* Son iki <li>'yi seç */
  position: absolute; /* Ebeveynine göre konumlandır */
  bottom: 0; /* En alt */
  left: 0;
  right: 0;
  text-align: center;
}

/* Birbirinin üzerine binmesini engellemek için */
#sidebar .side-menu.bottom li:nth-last-of-type(2) {
  bottom: 40px; /* İkinci son öğeyi yukarı kaydır */
}
/* SIDEBAR */





/* CONTENT */
#content {
	position: relative;
	width: calc(100% - 220px);
	left: 220px;
	transition: .3s ease;
}
#sidebar.hide ~ #content {
	width: calc(100% - 60px);
	left: 60px;
}




/* NAVBAR */
#content nav {
	height: 56px;
	background: var(--light);
	padding: 0 24px;
	display: flex;
	align-items: center;
	grid-gap: 24px;
	font-family: var(--lato);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}
#content nav::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: -40px;
	left: 0;
	border-radius: 50%;
	box-shadow: -20px -20px 0 var(--light);
}
#content nav a {
	color: var(--blue);
}
#content nav .bx.bx-menu {
	cursor: pointer;
	color: var(--dark);
}
#content nav .nav-link {
	font-size: 16px;
	transition: .3s ease;
}
#content nav .nav-link:hover {
	color: var(--blue);
}
#content nav form {
	max-width: 400px;
	width: 100%;
	margin-right: auto;
}
#content nav form .form-input {
	display: flex;
	align-items: center;
	height: 36px;
}
#content nav form .form-input input {
	flex-grow: 1;
	padding: 0 16px;
	height: 100%;
	border: none;
	background: var(--grey);
	border-radius: 36px 0 0 36px;
	outline: none;
	width: 100%;
	color: var(--dark);
}
#content nav form .form-input button {
	width: 36px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	color: var(--light);
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 0 36px 36px 0;
	cursor: pointer;
}
#content nav .notification {
	font-size: 20px;
	position: relative;
}
#content nav .notification .num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--light);
    background: var(--red);
    color: var(--light);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Notification Dropdown */
#content nav .notification-menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    font-family: var(--lato);
}

#content nav .notification-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

#content nav .notification-menu li {
    padding: 10px;
    border-bottom: 1px solid var(--grey);
	color: var(--dark);
}

#content nav .notification-menu li:hover {
    background-color: var(--light-blue);
	color: var(--dark);
}
#content nav .notification-menu li:hover a{
    background-color: var(--dark-grey);
	color: var(--light);
}
body.dark #content nav .notification-menu li:hover {
    background-color: var(--light-blue);
	color: var(--light);
}
body.dark #content nav .notification-menu li a{
    background-color: var(--dark-grey);
	color: var(--light);
}
#content nav .profile img {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 50%;
}
#content nav .profile-menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 200px;
    z-index: 9999;
    font-family: var(--lato);
}

#content nav .profile-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

#content nav .profile-menu li {
    padding: 10px;
    border-bottom: 1px solid var(--grey);
}

#content nav .profile-menu li:hover {
    background-color: var(--light-blue);
	color: var(--dark);
}
#content nav .profile-menu li a {
    color: var(--dark);
    font-size: 16px;
}
body.dark #content nav .profile-menu li:hover a {
    color: var(--light);
}
body.dark #content nav .profile-menu li a {
    color: var(--dark);
}
#content nav .profile-menu li:hover a {
    color: var(--dark);
}
/* Active State for Menus */
#content nav .notification-menu.show,
#content nav .profile-menu.show {
    display: block;
}

#content nav .switch-mode {
	display: block;
	min-width: 50px;
	height: 25px;
	border-radius: 25px;
	background: var(--grey);
	cursor: pointer;
	position: relative;
}
#content nav .switch-mode::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: calc(25px - 4px);
	background: var(--blue);
	border-radius: 50%;
	transition: all .3s ease;
}
#content nav #switch-mode:checked + .switch-mode::before {
	left: calc(100% - (25px - 4px) - 2px);
}


#content nav .swith-lm {
	background-color:  var(--grey);
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3px;
	position: relative;
	height: 22px;
	width: 45px;
	transform: scale(1.5);
}

#content nav .swith-lm .ball {
	background-color: var(--blue);
	border-radius: 50%;
	position: absolute;
	top: 1px;
	left: 2px;
	height: 20px;
	width: 20px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
}

#content nav .checkbox:checked + .swith-lm .ball {
	transform: translateX(22px);
}
.bxs-moon {
	color: var(--yellow);
}

.bx-sun {
	color: var(--orange);
	animation: shakeOn .7s;
}



/* NAVBAR */





/* MAIN */
#content main {
	width: 100%;
	padding: 36px 24px;
	font-family: var(--poppins);
	max-height: calc(100vh - 56px);
	overflow-y: auto;
}
#content main .head-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 16px;
	flex-wrap: wrap;
}
#content main .head-title .left div h1 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--dark);
}
	.head-name {
		display: flex;
		flex-direction: row;
		gap: 4px;
	}
#content main .head-title .left .breadcrumb {
	display: flex;
	align-items: center;
	grid-gap: 16px;
}
#content main .head-title .left .breadcrumb li {
	color: var(--dark);
}
#content main .head-title .left .breadcrumb li a {
	color: var(--dark-grey);
	pointer-events: none;
}
#content main .head-title .left .breadcrumb li a.active {
	color: var(--blue);
	pointer-events: unset;
}
#content main .head-title .btn-download {
	height: 36px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--blue);
	color: var(--light);
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 10px;
	font-weight: 500;
}


#content main .table-data .todo .box-info-x {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-gap: 24px;
	margin-top: 15px;
}
#content main .table-data .todo .box-info-x li {
	padding: 10px;
	background: var(--grey);
	border-radius: 15px;
	display: flex;
	align-items: center;
	grid-gap: 20px;
}
#content main .table-data .todo .box-info-x li .bx {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#content main .table-data .todo .box-info-x li:nth-child(1) .bx {
    background: var(--light-yellow);
    color: var(--yellow);
}

#content main .table-data .todo .box-info-x li:nth-child(2) .bx {
    background: var(--light-blue);
    color: var(--blue);
}

#content main .table-data .todo .box-info-x li:nth-child(3) .bx {
    background: var(--light-orange);
    color: var(--orange);
}

#content main .table-data .todo .box-info-x li:nth-child(4) .bx {
    background: #d4edda;   /* light green */
    color: #28a745;        /* green */
}

#content main .table-data .todo .box-info-x li:nth-child(5) .bx {
    background: #f8d7da;   /* light red/pink */
    color: #dc3545;        /* red */
}

#content main .table-data .todo .box-info-x li .text h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark);
}
#content main .table-data .todo .box-info-x li .text p {
	color: var(--dark);	
}

#content main .table-data .todo .box-info-x button {
	padding: 10px;
	background-color: #28a745;
	border-radius: 15px;
	align-items: center;
	grid-gap: 20px;
	border: none;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
    color: white;
	transition: background-color 0.5s ease, transform 0.3s ease;
	font-family: var(--poppins);
}

#content main .table-data .todo .box-info-x button:hover {
	background-color: #0c7024;
    transform: scale(1.03);
}



.underline {
	border-bottom: 3px solid var(--grey);
	margin: 15px 30px 0 30px;
	border-radius: 20px;
}


/*  referel demo  */
#content main .box-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-gap: 24px;
	margin-top: 36px;
}
#content main .box-info li {
	padding: 24px;
	background: var(--light);
	border-radius: 20px;
	display: flex;
	align-items: center;
	grid-gap: 24px;
}
#content main .box-info li .bx {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#content main .box-info li:nth-child(1) .bx {
	background: var(--light-yellow);
	color: var(--yellow);
}
#content main .box-info li:nth-child(2) .bx {
	background: var(--light-blue);
	color: var(--blue);
}
#content main .box-info li:nth-child(3) .bx {
	background: var(--light-orange);
	color: var(--orange);
}
#content main .box-info li .text h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--dark);
}
#content main .box-info li .text p {
	color: var(--dark);	
}




#content main .table-data {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 24px;
	margin-top: 24px;
	width: 100%;
	color: var(--dark);
}
#content main .table-data > div {
	border-radius: 20px;
	background: var(--light);
	padding: 24px;
	overflow-x: auto;
}
#content main .table-data .head {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	margin-bottom: 24px;
}
#content main .table-data .head h3 {
	margin-right: auto;
	font-size: 24px;
	font-weight: 600;
}
#content main .table-data .head .bx {
	cursor: pointer;
}

#content main .table-data .order {
	flex-grow: 1;
	flex-basis: 400px;
}
#content main .table-data .order table {
	width: 100%;
	border-collapse: collapse;
}
#content main .table-data .order table th {
	padding-bottom: 12px;
	font-size: 13px;
	text-align: left;
	border-bottom: 1px solid var(--grey);
}
#content main .table-data .order table td {
	padding: 16px 0;
}
#content main .table-data .order table tr td:first-child {
	display: flex;
	align-items: center;
	grid-gap: 12px;
	padding-left: 6px;
}
#content main .table-data .order table td img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}
#content main .table-data .order table tbody tr:hover {
	background: var(--grey);
}
#content main .table-data .order table tr td .status {
	font-size: 10px;
	padding: 6px 16px;
	color: var(--light);
	border-radius: 20px;
	font-weight: 700;
}
#content main .table-data .order table tr td .status.completed {
	background: var(--blue);
}
#content main .table-data .order table tr td .status.process {
	background: var(--yellow);
}
#content main .table-data .order table tr td .status.pending {
	background: var(--orange);
}
#content main .table-data .order table tr td .status.acive {
	background: rgb(8, 175, 8);
}

#content main .table-data .todo {
	flex-grow: 1;
	flex-basis: 400px;
}
#content main .table-data .todo .todo-list {
	width: 100%;
}
#content main .table-data .todo .todo-list li {
	width: 100%;
	margin-bottom: 16px;
	background: var(--grey);
	border-radius: 10px;
	padding: 14px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#content main .table-data .todo .todo-list li .bx {
	cursor: pointer;

}
#content main .table-data .todo .todo-list li.completed {
	border-left: 10px solid var(--blue);
}
#content main .table-data .todo .todo-list li.not-completed {
	border-left: 10px solid var(--orange);
}
#content main .table-data .todo .todo-list li:last-child {
	margin-bottom: 0;
}
/* MAIN */
/* CONTENT */
#content main .menu, #content nav .menu {

    display: none;
      list-style-type: none;
      padding-left: 20px;
      margin-top: 5px;
      position: absolute;
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 5px;
      width: 200px;
 }

 #content main .menu a , #content nav .menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
}

#content main .menu a:hover , #content nav .menu a:hover {
    background-color: #444;
}
        
#content main .menu-link , #content nav .menu-link {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #007bff;
}

#content main .menu-link:hover, #content nav .menu-link:hover {
    text-decoration: underline;
}





/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {
    /* Reduce width of notification and profile menu */
    #content nav .notification-menu,
    #content nav .profile-menu {
        width: 180px;
    }
	#sidebar {
		width: 200px;
	}

	#content {
		width: calc(100% - 60px);
		left: 200px;
	}

	#content nav .nav-link {
		display: none;
	}
	#content main .head-title .left div h1 {
	font-size: 30px;
	}
	.head-name {
		display: flex;
		flex-direction: column;
		line-height: 12px;
	}
		#content main .box-info {
		grid-template-columns: 1fr;
	}
}




@media screen and (max-width: 576px) {
    #content nav .notification-menu,
    #content nav .profile-menu {
        width: 150px;
    }
	#content nav form .form-input input {
		display: none;
	}

	#content nav form .form-input button {
		width: auto;
		height: auto;
		background: transparent;
		border-radius: none;
		color: var(--dark);
	}

	#content nav form.show .form-input input {
		display: block;
		width: 100%;
	}
	#content nav form.show .form-input button {
		width: 36px;
		height: 100%;
		border-radius: 0 36px 36px 0;
		color: var(--light);
		background: var(--red);
	}

	#content nav form.show ~ .notification,
	#content nav form.show ~ .profile {
		display: none;
	}

	#content main .box-info {
		grid-template-columns: 1fr;
	}

	#content main .table-data .head {
		min-width: 420px;
	}
	#content main .table-data .order table {
		min-width: 420px;
	}
	#content main .table-data .todo .todo-list {
		min-width: 420px;
	}
	#content main .head-title .left div h1 {
	font-size: 20px;
	}

}





/*    New Code Start     */



#content main .box-info-x li .bx {
	padding: 2px 10px 2px 10px;
	width: auto;
	height: auto;
	border-radius: 10px;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}
#content main .box-info-x li:nth-child(1) .bx {
	background: rgb(142, 212, 38);
	color:green;
}
#content main .box-info-x li i h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--dark);
	margin-top: -6px;
}





.table-center th {
	text-align: center;
}

.text-x {
	font-weight: bolder;
	font-size: 25px;
}


.last-btm {
	width: 100%;
	height: 50px;
	border-radius: 10px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	color:var(--dark);
	font-weight: 600;
	font-family: var(--lato);
	border: none;
	margin-top: 20px;
}

.last-btm:hover {
	background: var(--dark);
	color: var(--light);
}

.last-btm-x {
	width: 100%;
	height: 40px;
	border-radius: 10px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--orange);
	color:var(--light);
	font-weight: 600;
	font-family: var(--lato);
	border: none;
	margin-top: 20px;
}



@media screen and (max-width: 576px) {
	.text-x {
	font-size: 20px;
}
	.hide-x {
		display: none;
	}
}


/* Input Styles */


.flex-x {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--dark);
  background-color: var(--grey);
  height: 50px;
}



.flex-x .whatsapp-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background-color: #25D366;
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .instagram-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .image-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: var(--blue);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .zoom-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: var(--orange);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .book-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: var(--blue);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .email-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: var(--orange);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.flex-x .pass-icon {
  font-size: 30px;
  color: #ffffff; /* WhatsApp green */
  background: var(--red);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}

.inpute-x {
  width: 100%;
  height: 45px;
  flex: 1;
  font-size: 16px;
  border: none;
  outline: none;
  color: var(--dark);
  min-width: 0;
  font-family: var(--poppins);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--grey);
}


.file-input-x {
  width: 100%;
  flex: 1;
  font-size: 20px;
  border: none;
  outline: none;
  color: var(--dark);
  min-width: 0;
  font-family: var(--poppins);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--grey);
}


.logo-preview-x {
	border: 1px solid var(--dark);
	border-radius: 5px;
	margin: 10px 0 30px 0;
	height: 250px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	background-color: var(--grey);
}

#logo-image {
	background-color: var(--dark-grey);
	border-radius: 5px;
}















.alignment-options {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 10px;
}

.alignment-option {
  flex: 1;
  height: 50px;
  display: flex; /* Use flexbox */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  text-align: center;
  border: 1px solid var(--dark);
  cursor: pointer;
  background-color: var(--grey);
  font-size: 16px;
  user-select: none;
  transition: 0.2s;
  border-right: none;
}




.alignment-option:first-child {
    border-radius: 10px 0 0 10px;
}

.alignment-option:last-child {
  border-right: 1px solid var(--dark);
    border-radius: 0 10px 10px 0;
}

.alignment-option input[type="radio"] {
  display: none;
}

.alignment-option input[type="radio"]:checked + span {
  background-color: var(--blue);
  color: var(--dark);
  font-weight: 600;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-family: var(--poppins);
    display: flex; /* Use flexbox */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
}

.alignment-option:first-child input[type="radio"]:checked + span {
    border-radius: 10px 0 0 10px;
}

.alignment-option:last-child input[type="radio"]:checked + span {
    border-radius: 0 10px 10px 0;
}

.success-message {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: auto;
	text-align: center;
    background-color: #85ee87; /* Green background */
    color: var(--dark); /* White text */
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    font-family: var(--poppins);
    font-size: 16px;
	font-weight: 600;
}







/*    New Ceate Album Style Start     */



.pro-tip {
	width: 100%;
	background-color: var(--grey);
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid var(--dark);
	border-radius: 10px;
}


.category-scroll-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.category-card {
	position: relative;
    background: var(--grey);
    border: 1px solid var(--dark);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--dark);
}

.category-card.selected {
    border: 2px solid var(--dark);
	background: var(--blue);
}

.category-card .selected-indicator {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 8px;
  font-size: 40px;
  color: #03e556;
}

.category-card.selected .selected-indicator {
  display: block;
}












/* ✅ Grid for design cards */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.design-grid:has(.design-card:nth-child(1):nth-last-child(1)) {
  grid-template-columns: repeat(1, 220px);
}

/* ✅ Individual design card */
.design-card {
  position: relative;
  border: 1px solid var(--dark);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--grey);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.design-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--dark);
}

/* ✅ Image styling */
.design-card img,
.design-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}



/* ✅ Title below image */
.design-title {
  font-size: 20px;
  margin: 8px 10px 2px;
  font-weight: 600;
  color: var(--dark);
}

/* ✅ Description below title */
.design-description {
  font-size: 15px;
  margin: 0 10px 10px;
  color: var(--dark);
}

.design-card.selected {
    border: 2px solid var(--grey);
	background: var(--blue);
}

/* ✅ Check icon overlay */
.selected-indicator {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 8px;
  font-size: 40px;
  color: #03e556;
}

.design-card.selected .selected-indicator {
  display: block;
}





/* ✅ PopUp Open Code */

.modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-content {
  max-width: 480px;
  width: 95%;
  position: relative;
  font-family: var(--lato);
}
 
.border-xx {
	border: 1px solid var(--dark);
	border-radius: 20px;
}


/* ✅ top up Button */


.wallet-text {
  color: var(--dark);
  font-family: var(--poppins);
}

.wallet-green {
  background-color: var(--grey); /* light yellow */
  border-left: 10px solid #28a745;
  border-radius: 5px;
  padding: 0 5px 5px 5px;
}

.wallet-red {
  background-color: var(--grey); /* light yellow */
  border-left: 10px solid #dc3545;
  border-radius: 5px;
  padding: 0 5px 5px 5px;
}

.wallet-zero {
  background-color: var(--grey); /* light yellow */
  border-left: 10px solid #ffc107;
  border-radius: 5px;
  padding: 0 5px 5px 5px;
}

.coin-icon {
  margin-top: 0px;
}

.topup-btn {
	width: 100%;
	color: var(--dark);
	background-color: var(--orange);
	padding: 4PX;
	border-radius: 5px;
	border: none;
	font-weight: 500;
}

.topup-btn:hover {
	color: var(--light);
	background-color: var(--blue);
}

.wallet-red li .wallet-message {
  color: red;
  text-align: center;
  font-weight: 500;
  font-family: var(--lato);
}

.wallet-zero li .wallet-message {
  color: red;
  text-align: center;
  font-weight: 500;
  font-family: var(--lato);
}

.wallet-green li .wallet-message {
  color: green;
  text-align: center;
  font-weight: 500;
  font-family: var(--lato);
}

.btm-text {
	font-family: var(--poppins);
	display: flex;
	gap: 2px;
}

.btm-text-x {
	font-family: var(--poppins);
	display: flex;
	gap: 5px;
}

.btm-text img {
	margin-top: 3px;
}

.btm-text-x img {
	margin-top: 3px;
}

.m-b-x {
	margin-bottom: -15px;
}








.port-folio {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.port-folio-btn {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    justify-content: center;
    gap: 6px; /* Space between elements */
    padding: 12px 20px;
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
	background: transparent;
	transition: background-color 0.3s ease, color 0.3s ease;
	background-color: var(--grey);
}


.port-folio-btn:hover {
	color: var(--light);
	background-color: var(--dark);
}	

.port-folio-btn i {
    font-size: 35px;
	color: var(--orange);
}

.port-folio-btn h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
	color: var(--blue);
}

.port-folio-btn h1 span {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.port-folio-btn h1 span .coin-icon {
	margin-top: 10px;
}

.centered-cell {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    padding: 8px 12px;
}

.centered-cell span {
    display: inline-block;
    margin: 0 10px;
}








.top-r-btn {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end; /* or center/left based on your layout */
}

.top-r-btn li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 10px;
    background-color: var(--orange);
    color: var(--dark);
    border-radius: 8px;
    cursor: pointer;
	font-family: var(--poppins);
}

.top-r-btn li:hover {
    background-color: var(--dark);
	color: var(--light);
}

.top-r-btn li i {
    font-size: 20px;
}

.top-r-btn li h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 300;
}




.user-icon {
  font-size: 18px;
  color: #ffffff; /* WhatsApp green */
  background-color: #007bff;
  border-radius: 10px;
  padding: 3px;
}
 
.envelope-icon {
  font-size: 18px;
  color: #ffffff; /* WhatsApp green */
  background-color: #DB504A;
  border-radius: 10px;
  padding: 3px;
}

.phone-icon {
  font-size: 18px;
  color: #ffffff; /* WhatsApp green */
  background-color: #ffc107;
  border-radius: 10px;
  padding: 3px;
}

.whatsapp-icon {
  font-size: 18px;
  color: #ffffff; /* WhatsApp green */
  background-color: #25D366;
  border-radius: 10px;
  padding: 3px;
}

.instagram-icon {
  font-size: 18px;
  color: #ffffff; /* WhatsApp green */
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 10px;
  padding: 3px;
  margin-left: 6px;
}







.package-cnt {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--dark);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
}

.package-cnt:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--dark);
}

.package-coin {
  font-size:2rem;
  margin-bottom:8px;
  color: var(--orange);
}

.package-price {
  font-size:1.5rem;
  margin-bottom:8px;
  color: var(--dark);
}


.package-extra {
  font-weight: 600;
  margin-bottom: 8px;
}

.middle-text{
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}


.coin-title span{
	font-size: 40px;
	font-weight: 600;
	color: var(--orange);
}


.menu-icon {
	font-size: 2rem;
	border: 1px solid var(--dark);
	border-radius: 2px 10px 10px 2px;
	padding: 1px;
	cursor: pointer;
	transition: all 0.3s;
}

.menu-icon:hover {
	transform: translateY(-2px);
	border: 1px solid var(--blue);
    background-color: var(--blue);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    table td, table th {
        text-align: center !important;
        vertical-align: middle;
    } 

.coin-heading {
	font-size: 17px;
	color: var(--orange);
}

.head-x {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	margin-bottom: 15px;
}
.head-x h3 {
	margin-right: auto;
	font-size: 24px;
	font-weight: 600;
}
.head-x .bx {
	cursor: pointer;
}

@media screen and (max-width: 576px) {
	.head-x .coin-title{
		display: flex;
		flex-direction: column;
		grid-gap: 16px;
		margin-bottom: 5px;
		min-width: 420px;
		font-size: 20px;
	}
}


.package-extra.basic {
  color: #eb0606; /* green */
}

.package-extra.silver {
  color: #bbb6b6; /* silver */
}

.package-extra.gold {
  color: #ddbc05; /* gold */
}

.package-extra.platinum {
	color: 	#2047d3;
}


.package-name {
	color: #03e556;
	font-weight: 500;
}

.note-line {
	color: var(--blue);
	font-weight: 500;
	margin-top: -5px;
	margin-bottom: 10px;
}


.head-title .left .head-name {
	line-height: 25px;
}


