* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5ems;
}
body {
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  color: #414042;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
img {
  vertical-align: bottom;
}
:root {
  --clr-light: #fff;
  --clr-dark: #000;
  --clr-light-gray: #e6e7e8;
  --clr-btn: #f2ae00;
  --clr-light-yellow: #fef9ef;
  --clr-hover-red: #70090a;
  --clr-bu-hover: #4caf50;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
  letter-spacing: 0.06rem; /*1*/
  color: #676668;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
h1 {
  font-size: 2rem; /*32*/
}
h2 {
  font-size: 1.5rem; /*24*/
}
h3 {
  font-size: 1.1rem; /*18*/
}
h4 {
  font-size: 1rem; /*16*/
}
p {
  font-size: 0.9rem; /*14*/
  font-weight: 300;
  line-height: 1.1rem; /*18*/
}
p a {
  color: #414042;
  text-decoration: none;
}
p a:hover {
  color: var(--clr-hover-red);
  text-decoration: none;
}
.wrapper {
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  display: flex;
  margin: auto;
}
.side-band {
  width: 15%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-btn);
  padding-block: 50px;
  /* box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.15);
-webkit-box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.15); */
}
.top-band-mobile,
.bottom-band-mobile {
  display: none;
}
.main {
  width: 85%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* .main h3 {
  font-size: 14px;
  font-weight: 400;
} */
.logo {
  width: 182px;
  height: auto;
  display: block;
}
.panel-login,
.formMainten {
  width: 350px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-light);
  padding: 20px;
  margin-top: 40px;
  border: 1px solid var(--clr-light-gray);
  border-radius: 10px;
  box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.formMainten h3 {
  margin-bottom: 10px;
}
.panel-login p {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
}
.trade-mark img {
  width: 100px;
  height: auto;
  padding-bottom: 20px;
}
.top-pump-pic img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
}
.record-band {
  width: 1200px;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mainten-record {
  width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container {
  width: 100%;
  /* display: flex;
  flex-direction: column; */
  height: auto;

  /* padding: 20px; */
}
.container h2 {
  padding-bottom: 20px;
}
.container h3 {
  padding-bottom: 15px;
}
input,
select,
textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  resize: vertical;
  font-weight: 300;
  margin-block: 5px;
  border: 1px solid #ccc;
}
button {
  width: 100%;
  background-color: #f2ae00;
  color: #fff;
  padding-block: 10px;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  margin-top: 10px;
}
button:hover {
  color: #333;
  background-color: #f2ae00;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: #c0c4c6;
}
/*-----table----*/

#userTable {
  margin-top: 1rem;
}

/* table, */
table {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-collapse: collapse;
  text-align: left;
  margin: auto;
  table-layout: fixed;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
td,
th {
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-align: center; /* new*/
}
th {
  font-size: 14px;
  font-weight: 400;
  background: #fdefd3;
  color: #676668;
}
td {
  font-size: 12px;
  font-weight: 300;
}
table tr:nth-child(odd) {
  background-color: var(--clr-light-yellow);
}
/*=====================================MQ=========================*/

@media only screen and (max-width: 1600px) {
  .side-band {
    display: none;
  }
  .wrapper {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
  .main {
    width: 100%;
    margin-block: 20px;
  }
  .top-band-mobile,
  .bottom-band-mobile {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8b930;
  }
  .top-band-mobile img {
    display: block;
    border-radius: 50%;
    padding-block: 20px;
  }
  .bottom-band-mobile img {
    display: block;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .top-band-mobile img {
    width: 75px;
    height: auto;
    padding-block: 10px;
  }
  .bottom-band-mobile img {
    width: 100px;
    height: auto;
    padding-block: 20px;
  }
}
