* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    min-height: 100vh;
    background-color: #f1f2f7;
}
button.addlocation {
    	margin: 0 0 37px 0;
	}
	/* Add padding to containers */
.container {
    padding: 16px;
    background-color: white;
    max-width: 100%;
}

/* Full-width input fields */
input[type=text], input[type=password],input[type=date], input[type=number] {
  width: 100%;
  padding: 10px;
  margin: 0px 0 15px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Overwrite default styles of hr */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

/* Set a style for the submit button */
.registerbtn {
    padding: 10px 25px;
    font-size: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.registerbtn:hover {
  opacity: 1;
}

/* Add a blue text color to links */
a {
  color: dodgerblue;
}

/* login page */
.login-container{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
   
}
.btn {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.login-form{
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 6px #000;
}
.login-form .form-control{
    /* border: 1px solid rgba(50, 50, 58, 1.0); */
    background-color: #f1f2f7;;
    border: none;
    box-shadow: 0px 0px 6px #000;
}
.form-check-input{
    border:1px solid rgba(50, 50, 58, 1.0);
}
.login-btn{
    display: block;
    margin: 0 auto;
    padding: 5px 35px;
}
/* dashboard */
.dash-container{
    display: flex;
    min-height: 100vh;
}
 /* Sidebar styling */
 .sidebar {
    width: 250px;
    background-color: #2c3e50;
    padding: 20px;
    color: white;
    /* height: 100vh; */
}

.sidebar-logo h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 20px 0;
}

.menu a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu a:hover {
    background-color: #34495e;
}

.menu a i {
    margin-right: 15px;
}

/* Main content styling */
.main-content {
    flex: 1;
    padding: 50px;
}

header {
    margin-bottom: 20px;
}

header h1 {
    color: #2c3e50;
}

.Dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dash-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.dash-card i {
    font-size: 36px;
    color: #3498db;
    margin-right: 20px;
}

.dash-card h3 {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 19px;
    font-weight: 600;
}

.dash-card p {
    color: #7f8c8d;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: initial;
}
.mb-3 {
    color: #2c3e50;
    /* font-weight: 600; */
}
input[type=text], input[type=password], input[type=date], input[type=number] {
    border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 5px;
}
select.locationname {
    border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 5px;
}
select.role{
     border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 5px;
}
header a {
    background: #3498db;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
	text-decoration:none;
	font-size:14px;
}
select {
    background: #fff;
    width: 100%;
    padding: 10px;
    margin: 0 0 15px;
}
/************** Toggle Menu css start here ***************/
.sidebar{ padding:0px;}
/* Toggle Styles */
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#wrapper.toggled {
  padding-left: 250px;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background:#2c3e50;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-x: hidden;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

#page-content-wrapper {
  position: absolute;
  padding: 15px;
  width:100%;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
}
.sidebar-logo {
    padding: 15px;
}
#sidebar-wrapper nav {
    padding: 0 15px;
}
/* Desktop View*/
@media only screen and (min-width: 768px) {
  #wrapper {
    padding-left: 250px;
  }
  #wrapper.toggled {
    padding-left: 0;
  }
  #sidebar-wrapper {
    width: 250px;
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 0;
  }
  #page-content-wrapper {
    padding: 30px 40px;
    position: relative;
  }
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}

/* mobile */
#page-content-wrapper #menu-toggle {
  cursor: pointer;
  font-size: 30px;
}
/************** Toggle Menu css en here ******************/
@media (max-width:768px) {
.main-content {
    flex: 1;
    padding:50px 20px;
}
.Dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	margin-bottom:20px;
}
}
@media (max-width:480px) {
.Dashboard-section {
    grid-template-columns:1fr;
    gap: 20px;
	margin-bottom:20px;
}
}
@media (min-width: 1200px){
.h2, h2 {
    font-size: 20px;
}
}
.dataTable tr th, .dataTable tr td{
  text-align: left!important;
}
.form-select{
  height: 46px;
}
@media(min-width:768px){
  .remove_button{
    *padding-right: 50px;
  }
}
.error_msg_custom {
    color: red;
    font-size: small;
    position: absolute;
    margin-top: -18px;
}
li.active-menu {
    background: #fff;
    font-weight: 600;
}
li.active-menu a {
    color: #2c3e50;
	 pointer-events: none;
}