/* Variables */
:root {
	--primary-color: #0088cc;
	--secondary-color: #f9f9f9;
	--text-color: #333333;
	--font-family: 'Montserrat', sans-serif;
	--border-radius: 8px;
}

/* Global styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-family);
	background-color: var(--secondary-color);
	color: var(--text-color);
}

/* Login styles */
.login {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.login-header {
	text-align: center;
	margin-bottom: 2rem;
}

.login-header h1 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.login-body {
	background-color: var(--secondary-color);
	padding: 2rem;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius);
	width: 100%;
	max-width: 500px;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	font-weight: 500;
}

input[type="text"],
input[type="password"] {
	display: block;
	width: 100%;
	padding: 1rem;
	font-size: 1.2rem;
	font-family: var(--font-family);
	border-radius: var(--border-radius);
	border: none;
	background-color: #f5f5f5;
	transition: background-color 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
	background-color: #e5e5e5;
}

.btn {
	display: block;
	width: 100%;
	padding: 1rem;
	font-size: 1.2rem;
	font-weight: 500;
	font-family: var(--font-family);
	color: var(--secondary-color);
	background-color: var(--primary-color);
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background-color 0.2s ease;
}


/* Dashboard styles */
.dashboard {
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
}

.dashboard-sidebar {
	flex: 0 0 200px;
	padding: 2rem;
	background-color: var(--primary-color);
	color: var(--secondary-color);
	text-align: center;
}

.dashboard-sidebar h2 {
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 700;
	color: var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.dashboard-sidebar ul {
	list-style: none;
	margin-bottom: 2rem;
}

.dashboard-sidebar li {
	margin-bottom: 1rem;
}

.dashboard-sidebar li a {
	display: block;
	padding: 0.5rem;
	color: var(--secondary-color);
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

.dashboard-sidebar li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.dashboard-content {
	flex: 1;
	padding: 2rem;
	display: flex;
	/*flex-direction: column;*/
	 align-items: flex-start;
	justify-content: center;
}

.edbtns, .deletebtns {
    padding: 5px;
    width: 78px;
    margin-bottom: 10px;
}

.dashboard-upload {
	background-color: var(--secondary-color);
	padding: 2rem;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius);
	width: 100%;
	max-width: 500px;
}

.dashboard-upload h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--text-color);
}

input[type="file"] {
	display: block;
	width: 100%;
	padding: 1rem;
	font-size: 1.2rem;
	font-family: var(--font-family);
	border-radius: var(--border-radius);
	border: none;
	background-color: #f5f5f5;
	transition: background-color 0.2s ease;
}

input[type="file"]:focus {
	background-color: #e5e5e5;
}

.btn {
	display: block;
	width: 100%;
	padding: 1rem;
	font-size: 1.2rem;
	font-weight: 500;
	font-family: var(--font-family);
	color: var(--secondary-color);
	background-color: var(--primary-color);
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-top: 1.5rem;
}

.btn:hover {
	background-color: #0077b3;
}
.isred{
  
  color:red;
}

.ddnw{
margin-top:30px;
display:none;  
}


.pinv {
    padding: 10px;
    font-size: 19px;
}

.complete{
   padding: 10px;
    font-size: 19px;
    background:blue
    color:#fff;
}



.user-accounts {
	background-color: var(--secondary-color);
	padding: 2rem;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius);
	width: 90%;
	/*max-width: 800px;*/
	margin: 0 auto;
	align-self: flex-start;
}

.user-accounts table {
	width: 100%;
	border-collapse: collapse;
}

.user-accounts th,
.user-accounts td {
	padding: 1rem;
	text-align: left;
}

.user-accounts th {
	font-weight: 500;
	color: var(--secondary-color);
	background-color: var(--primary-color);
}

.user-accounts td {
	background-color: #f5f5f5;
}

.user-accounts tr:nth-child(even) td {
	background-color: #e5e5e5;
}

.user-accounts button {
	margin-right: 0.5rem;
}


.add-account-button {
	margin-bottom: 1.5rem;
	text-align: right;
	float:right;
	width:220px;

}

.add-account-button button {
  background:#fff;
	color:#000;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	font-weight: 500;
	border-color:#ccc;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.add-account-button button:hover {
	background-color: #ccc;
}



	#account-form {
			margin-top: 1.5rem;

		}

		.form-group {
			margin-bottom: 1.5rem;
		}

		.form-group label {
			display: block;
			margin-bottom: 0.5rem;
			font-size: 1.2rem;
			font-weight: 500;
		}

		.form-group input[type="text"],
		.form-group input[type="password"] {
			display: block;
			width: 100%;
			padding: 1rem;
			font-size: 1.2rem;
			font-family: var(--font-family);
			border-radius: var(--border-radius);
			border: none;
			background-color: #999;
			transition: background-color 0.2s ease;
		}

		.form-group input[type="text"]:focus,
		.form-group input[type="password"]:focus {
			background-color: #999;
		}

		.form-group button {
			display: block;
			width: 100%;
			padding: 1rem;
			font-size: 1.2rem;
			font-weight: 500;
			font-family: var(--font-family);
			color: var(--secondary-color);
			background-color: var(--primary-color);
			border: none;
			border-radius: var(--border-radius);
			cursor: pointer;
			transition: background-color 0.2s ease;
		}

		.form-group button:hover {
			background-color: #0077b3;
		}



                .subform-buttons {
			margin-top: 1.5rem;
			display: flex;
			justify-content: flex-end;
		}

		.subform-buttons .btn {
			margin-left: 0.5rem;
		}
		
		
		.dogrey{
                background:#ccc;
                }


                	.iswhtbrn{
                background:#fff;
                color:#000;
                }

                	.isdelbrn{
                background:#000;
                color:#ccc;
                }



                .uploadpic {
    display: none;
    float: left;
    position: fixed;
    width: 280px;
    margin-left: 15px;
    z-index: 1000;
    color: #fff;
    text-align: center;
    border-radius: 0px;
    padding: 3px 16px 16px 4px;
    top: 14px;
    border-color: #000;
    border: 1px solid #ccc;
    background: #d2cdcd;
    left: 73%;
    margin-left: -200px;
}

.uploadpart {
    width: 92%;
    height: 198px;
    border: 1px solid #000;
    margin: 0px auto;
    width: 90%;
    padding: 11px;
}

.btn-success {
    background-color: #2d2f7a;
    border-color: #2d2f7a;
}

#close {
    float: right;
    display: inline-block;
    font-size: 20px !important;
    z-index: 99000;
    cursor: pointer;
    color: #000;
}
img.islogo {
       width: 70px;
    margin-top: 18px;
}

button.catbtns {
    background: #ccc;
    border: 0px;
    padding: 6px;
    width: 100%;
    margin-bottom: 13px;
    height: 65px;
}

table{
width: 100%;
}

td.tabtd {
    width: 33%;
}

.pd {
    width: 20%;
    padding-right: 34px;
}

.sl {
    width: 80%;
}

.ccount {
    background: #999 !important;
    width: 93px !important;
}


.pr {
    width: 20%;
    padding-bottom: 39px;
    padding-top: 33px;
    padding-left: 27px;
}

.hdr{
  
}


.smj{
      width: 92% !important;
}


.newselect {
    position: relative;
    display: block;
    width: 100%;
    font-size: 12px;
    height: 3em;
    line-height: 3;
    background: #dedede;
    overflow: hidden;
    border-radius: 0.25em;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #dedede;
    background-image: none;
    width: 100%;
    padding-left: 16px !important;
    padding-top: 15px;
}
.newselect::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 1em;
    background: #34495e;
    pointer-events: none;
}


.deletecat {
    background: #ccc;
    display: inline-block;
    padding: 13px;
}

.dothiscursor{
cursor:pointer;

}
.dolleft {
    text-align: left;
    padding-left: 25px;
    padding-top: 2px;
}
.menuadj {
    font-size: 17px;
    border: 1px solid;
    width: 40%;
    margin-left: auto;
}
.cdel {
    margin-top: 30px;
    display:none;
}



.newadjust {
    font-size: 17px;
    border: 1px solid;
}

.sticky-table {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
  }

  .tabtd {
    padding: 10px;

  }
  
.last-row td {
    border: 1px solid black;
  }
  
.ccate {
    display: block;
    font-weight:bold;
}


.ticketsweet {

    height: 86px;
    position: fixed;
    bottom: 0%;
    width: 100%;
    opacity: 1;
    z-index: 1000;
    background: #fff;
}

.mlist-price {
    text-align: center;
    background: #fff;
    border-top: 1px solid #ccc;
    font-size: 16px;
}

.buysummary {
    padding: 10px;
    background-color: #00ab44;
    color: #fff;
    /* width: 184px; */
    text-align: center;
    font-size: 21px;
    font-family: 'Montserrat', sans-serif !important;
    border-radius: 3px;
    cursor: pointer;
    margin: 0px 3px;
    width: 86%;
    border: 0px;
}

.buyvic {
    margin: 0px 3px;
}
.buybtnadj {
    padding: 1px;
    height: 55px;
}

.chtxt {
    display: block;
    font-size: 12px;
}

.shcart {
    padding-top: 16px;
    font-weight: 700 !important;
    cursor: pointer;
}

.docenter {
    text-align: center;
}

.shoppingbasket {
    right: 0px;
    height: 476px;
    position: fixed;
    bottom: 2%;
    width: 100%;
    opacity: 1;
    z-index: 1000;
    background: #ead775;
    top: auto;
    margin-bottom: 72px;
    display: none;
}
.emptycart {
    height: 40px;
    /* background: #ccc; */
    padding-left: 28px;
    cursor: pointer;
}

.orderlabelc {
    font-weight: bold;
    padding-bottom: 7px;
    text-align: center;
}

.basketsummary {
    overflow-y: auto;
    height: 391px;
}

.inbasket {
    cursor: pointer;
    min-height: 15px;
    border-bottom: 1px dotted #ccc;
}
.yourorder {
    display: block;
    margin-bottom: 0px;
    /* text-align: left; */
    background: #fff;
    padding: 4px;
    padding-bottom: 7px;
}

.doright {
    text-align: right;
}

.mbasket {
    display: block;
    padding-right: 14px;
    padding-top: 14px;
}

button.neworder,.goback {
    width: 98%;
    padding: 10px;
    background: #000;
    color: #fff;
    font-size: 17px;
}


button.pastorders,.signout {
    width: 98%;
    padding: 10px;
    background: #ffffff;
    color: #000;
    font-size: 17px;
}




.confirmorder {
    background: #fff;
    width: 90%;
    padding: 20px;
    border: 1px solid #000000;
    display: none;
    margin: 0px auto;
    margin-bottom: 16px;
    margin-top: 17px;
    position: fixed;
    z-index: 4100;
    top: 310px;
    margin-left: 4%;
}



 .markcomplete,.delupload,.editbox,.addnewbox,.addnewupload {
    background: #fff;
    width: 40%;
    padding: 20px;
    border: 1px solid #000000;
    display: none;
    margin: 0px auto;
    margin-bottom: 16px;
    margin-top: 17px;
    position: fixed;
    z-index: 4100;
    top: 25px;
    margin-left: 40%;
}

.doleft{
 text-align:right; 
}


.approveorder, .cancelthat,.domarkcomplete,.dodelete,.doedit,.doeditscale,.dodeletescale,.addnewscale,.doaddscale,.doaddthisupload {
    margin-top: 22px;
}

.compl{
   background: #c4d7c4 !important;
}

.cancelthat {
     border: 1px solid #ccc;
    padding: 7px;
    display: inline-block;
    background: #fff;
    color: #000;
    cursor: pointer;
    width: 177px;
    font-weight: 700;
}


.txt{
  text-align:center;
  
}

.inputborder {
    border: 1px solid #999;
    margin-bottom: 12px;
    border: 1px solid #999 !important;
}
.imgwadj{
    width: 80% !important;;
}


.approveorder,.domarkcomplete,.dodelete,.doedit,.doeditscale,.dodeletescale,.addnewscale,.doaddscale,.addnewuploadbtn,.doaddthisupload {
    border: 1px solid #ccc;
    padding: 7px;
    display: inline-block;
    background: #00ab44;
    color: #fff;
    cursor: pointer;
    width: 177px;
    font-weight: 700;
}



.pdr{
 padding-right:10px;
}





.confirmneworder {
    background: #fff;
    width: 88%;
    padding: 20px;
    border: 1px solid #f8d5d5;
    display: none;
    margin: 0px auto;
    margin-bottom: 16px;
    margin-top: 17px;
}
.approvethat, .cancelthat {
    margin-top: 22px;
}

.cancelthat {
     border: 1px solid #ccc;
    padding: 7px;
    display: inline-block;
    background: #fff;
    color: #000;
    cursor: pointer;
    width: 177px;
    font-weight: 700;
}

.approvethat {
    border: 1px solid #ccc;
    padding: 7px;
    display: inline-block;
    background: #00ab44;
    color: #fff;
    cursor: pointer;
    width: 177px;
    font-weight: 700;
}



.docenter{
 text-align:center;
}

.basketsummary {
    overflow-y: auto;
    height: 391px;
}


tr.ccbg {
    padding: 30px;
    margin-bottom: 11px;
    border-bottom: 1px dotted #ccc;
}


.custab {
    width: 92%;
    margin: 0px auto;
}


.custab td {
    margin-bottom: 8px;
    border-bottom: dotted 1px #ccc;
    padding-bottom: 16px;
    padding-top: 30px;
}

.dohide{
  display:none;
}


.rchev {
 text-align:right;
 padding-right:15px;
 cursor:pointer;
     position: relative;
}

td.searchtr {
    display: none;
}


span.direction.down {
    display: block;
    /* width: 60%; */
    /* float: right; */
    margin: bo;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10px;
}

.seachdiv {
    width: 92%;
    margin: 0px auto;
    padding-top: 20px;
}

.searchbox {

    border: 1px solid #ccc !important;

}
.slist {
list-style: none;
    background: #999;
    color: #fff;
}

.isprice{

}

.seprr{
 background: #999;
}

.swrapper {
    overflow: auto;
    height: 406px;
    margin-top: 10px;
}

.slist li {
    line-height: 31px;
    border-bottom: 1px solid #ccc;
    padding: 6px;
    cursor: pointer;
}



