*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: sans-serif;
}

:root{
	--background-color: #fff;
	--color-text: #fff;
	--color-title: #9333ea;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body{
	background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
	transition: 0.8s;
	height: 100%;
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
	background-color: #12213b;
    
}
.holder{
    height: auto;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit,300px);
    overflow: hidden;
    border-radius: 6px;
	background-color: #111827;
}
.loginholder{
    background-color: 111827;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    min-height: 60vh;
	border: 2px solid rgb(0, 0, 0, 0.1);
}
.loginholder form{
    margin-right: 40px;
}
.loginholder #login{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}
.loginholder input{
    padding: 10px;
    outline: none;
}
.loginholder label{
    color: #fff;
}
.loginholder #submit{
    display: flex;
    align-items: center;
    background: gold;
    padding: .5em 4em;
    border: none;
    font-size: 17px;
    transition: all 0.4s ease;
}

.loginholder #submit:hover{
    background: rgb(255, 255, 255);
}
.container .rightbox{
    display: none;
    justify-content: center;
    background: gold;
    width: 360px;
    height: 550px;
    overflow: hidden;
}
.menusection {
	display: flex;
	width: 100%;

  }
  
  .menusection a {
	color: #fff;
  }
  
  .menudash {
	display: flex;
	flex: 1;
  }
  
  .menuleft {
	display: block;
	justify-content: center;
	width: 250px;
	height: 100vh;
	overflow: hidden;
	background-color: #111827;
	z-index: 1000;
  }
  
  .menuleft h3 {
	color: #fff;
	padding: 26px;
  }
  
  .menuleft ul li {
	padding: 16px;
  }
  
  .menuleft ul li a {
	font-size: 17px;
	display: grid;
	align-items: center;
	padding: 0px 40px;
  }
  
  .menuleft #user {
	align-items: center;
	padding: 10px 0px;
  }
  
  .menuleft img {
	position: absolute;
	width: 17px;
  }
  
  .submit button {
	margin: 29px;
	border: none;
	padding: 1em;
  }
  
  .menuright {
	flex: 1; /* takes remaining space */
	background-color: #f9f9f9; /* or whatever you want */
	overflow: auto;
  }
  .menuright .total{
	display: flex;
	gap:20px;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 0px;
}
.total{
height: 80px;
padding: 20px;
 background-color: #45a049;	
  }
  .menuright .total h2{
	font-size: 17px;
	font-weight: 400;
  }
.topbar{
	display: flex;
	align-items: center;
	padding: 0px 20px;
	width: 100%;
	height: 100px;
	background-color:#fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.toggle-button{
	border: none;
	background: none;

}
.toggle-button img{
	display: none;
}
.topmenuholder img{
	padding: 0px 40px;
}
.topmenuholder input{
	padding: 1em 7em;
	outline: none;
	border: 1px solid #e0e0e0;
}
.overview{
	display: grid;
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	width: 100%;
	height: 200px;
	background-color:#f3f3f3;

}
.overviewholder{
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	margin: 10px;
	width: 300px;
	height: 150px;
	border-radius: 8px;
	background-color:#111827;
	
}
.overviewholder img{
	width: 50px;
}
.uploadheader{
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 10vh;
	background-color:rgb(41 48 71);
	
}
.uploadheader #upload{
	color: #fff;
    background-color:rgb(41 48 71);
	margin-left: 10px;
	border: none;
	padding: .5em 0.6em;
	font-size: 17px;
}
.form-container {
	color: #fff;
    padding: 20px;
	min-height: 100vh;
    background-color: #12213b;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

.form-group {
    margin-bottom: 20px;
	color: #fff;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
    width: 60%;
    height: 60px;
    padding: 10px;
	border: none;
	outline: none;
    border: 1px solid #ccc;
}
.form-groupstory #textarea{
    width: 60%;
    height: 200px;
    padding: 10px;
	border: none;
	outline: none;
    border: 1px solid #ccc;
}
.AddAdmin #upload{
	padding: 1em 7em;
	outline: none;
	border: 1px solid #e0e0e0;

}
.viewcontent {
	border-collapse: collapse;
	width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
  }
  
  .viewcontent th, .viewcontent td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
  }
  
  .viewcontent th {
	color: #f9f9fa;
	background-color: #12213b;
	position: sticky;
	top: 0;
  }
  
  .viewcontent td {
	color: #12213b;
	background-color: #f9f9fa;
  }
  
  .viewcontent tr:nth-child(even) {
	background-color: #f2f2f2;
  }
  
  .viewcontent tr:hover {
	background-color: #e2e2e2;
  }

.AddAdmin {
    display: flex;
    justify-content: space-between;
}

.AddAdmin button {
	color: #fff;
	border: none;
	padding: 1em;
	border-radius: 4px;
	background: #12213b;
	cursor: pointer;
}
.selectoption{
	background-color: #4CAF50;
	border-radius: 5px;
}
/* Responsive Styles */

@media only screen and (max-width: 768px) {
	.menusection {
	  flex-direction: column;
	}
	.topmenuholder{
		display: flex;
	}
	.toggle-button img{
		display: block;
	}
	.menuleft {
	background-color: #111827;
	  display: none;
	  width: -249px;
	  height: 100vh;
	  position: fixed;
	  top: 0;
	  right: - 300px;
	  transition: left 0.5s;
	}
	.menuright {
	  width: 100%;
	}
	.menuleft.show {
	  display: block;
	  width: 100%;
	  left: 0;
	  margin-top: 84px;
	}
	.toggle-button {
	  display: block;
	}
	.topbar {
	  height: auto;
	  padding: 20px;
	}
	.topmenuholder img {
	  padding: 0px 10px;
	}
	.topmenuholder input {
	  padding: 1em 1em;
	}
	.overview {
	  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
	  height: auto;
	}
	.overviewholder {
	  width: 100%;
	  height: auto;
	  margin: 10px 0px;
	}
	.uploadheader {
	  flex-direction: column;
	  align-items: flex-start;
	}
	.uploadheader #upload {
	  margin-left: 0px;
	  margin-top: 20px;
	}
	.form-container {
	  padding: 10px;
	}
	.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
	  width: 100%;
	  height: auto;
	  padding: 10px;
	}
	.form-groupstory #textarea{
		width: 100%;
		height: 200px;
		padding: 10px;
	}
	.AddAdmin #upload {
	  padding: 1em 3em;
	  width: 100%;
	}
	.uploadheader #upload{
		font-size: 13px;
	}
	.viewcontent {
		overflow-x: auto;
	  }
  }
  .cashout-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}

.cashout-btn:hover {
    background-color: #45a049;
}

input[type="number"] {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    width: 100%;
    max-width: 200px;
    border: 1px solid #ddd;
}

label {
    font-weight: bold;
}

  @media only screen and (max-width: 480px) {
	.menuleft ul li a {
	  font-size: 15px;
	  padding: 0px 20px;
	}
	.menuleft #user {
	  padding: 5px 0px;
	}
	.menuleft img {
	  width: 15px;
	}
	.overviewholder img {
	  width: 30px;
	}
	.form-group label {
	  font-size: 15px;
	}
	.uploadheader #upload{
		font-size: 10px;
	}
	.viewcontent th, .viewcontent td {
		padding: 5px;
		font-size: 14px;
	  }
	  .AddAdmin button {
		width: 100%;
	  }
	  .menuright .total h2 {
		font-size: 12px;
		font-weight: 400;
	}
	.viewcontent th, .viewcontent td {
        font-size: 11px;
    }
	
  }
  @media only screen and (max-width: 320px) {
	.AddAdmin {
	  flex-direction: column;
	}
	.AddAdmin button {
	  margin-top: 10px;
	}
	.viewcontent th, .viewcontent td {
		font-size: 8px;
	  }
	  .topmenuholder input {
        padding: .3em;
		max-width: 120px;
    }
	
  }

  