@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
}

body,
html {
  height: 100%;
  font-family: poppins, sans-serif;
}

.navbar {
  background: #4d90fe;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.container {
  display: flex;
  height: 100vh;
}

.left-section {
  flex: 1;
  background: #f7d61c url(../images/log-bg1.png) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 10rem 2rem;
}
.logo {
  height: auto;
  margin: 1rem 0;
}

.left-section h1 {
  font-size: 1.5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.left-section img {
  max-width: 80%;
  height: auto;
}

.right-section {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.right-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.right-section p {
  margin-bottom: 2rem;
  color: #555;
}

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

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
}

.remember {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: #666;
}

.remember input {
  margin-right: 0.5rem;
}

.sign-in-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sign-in-btn:hover {
  background-color: #2563eb;
}

/* Dashboard */
.dashboard {
  display: flex;
  height: 100vh;
  background-color: #f9f9f9;
}
.inner-logo {
  margin-bottom: 20px;
}
.inner-logo img {
  width: 100%;
  height: auto;
}
.sidebar {
  width: 250px;
  background-color: white;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.sidebar ul li a img {
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.sidebar h2 {
  font-size: 18px;
  margin: 10px 0 20px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin-bottom: 15px;
}
.sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 10px;
}
.sidebar ul li a:hover {
  color: #007bff;
}
.sidebar ul li a.active {
  background-color: #e0f0ff;
  color: #007bff;
}

.main-content {
  flex: 1;
  padding: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #407bff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
}
span.profile-img {
  display: flex;
  align-items: center;
  gap: 18px;
}
.breadcrumbs {
  margin: 20px;
  font-size: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 20px;
}

.card {
  background: linear-gradient(to right, #2e6f91, #4d91ff);
  color: white;
  padding: 20px;
  flex: 1 1 calc(25% - 15px);
  border-radius: 10px;
  text-align: center;
}
.cards .card p {
  margin: 10px 0;
  font-weight: 700;
  font-size: 2rem;
}

.scoreboard {
  margin: 20px 20px 0;
  background: white;
  padding: 0px;
  border-radius: 20px;
}

.scoreboard h3 {
  background: #d3d9df;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}
.scoreboard .gourp-card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px 40px;
}

.scoreboard .card1 {
  background: white;
  padding: 0;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 49%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  max-height: 300px;
  overflow: auto;
}
.card1 h4 {
  padding: 15px;
  border-bottom: 1px solid #808080;
}
.warning,
.upcoming {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f9f9f9;
  margin-bottom: 5px;
}

.warning span {
  margin-left: 10px;
}

.warning.red {
  color: red;
}

.warning.yellow {
  color: #ffbf00;
}

.warning.green {
  color: green;
}

.warning.red span {
  background: #ff0000;
  color: #fff;
  display: flex;
  margin: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  margin-right: 10px;
  align-items: center;
}
.warning.green span {
  background: green;
  color: #fff;
  display: flex;
  margin: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  margin-right: 10px;
  align-items: center;
}
.warning.yellow span {
  background: #ffbf00;
  color: #fff;
  display: flex;
  margin: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  margin-right: 10px;
  align-items: center;
}
.warning span img {
  max-width: 10px;
}
.profile-card {
  background: white;
  padding: 90px 20px 20px;
  border-radius: 10px;
  margin: 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
.profil-avatar {
  position: absolute;
  top: -60px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.profil-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #4d90fe;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
span.avatar-text {
  background: #4d90fe;
  position: relative;
  bottom: 26px;
  right: 33px;
  padding: 5px 8px;
  border-radius: 30px;
  line-height: 24px;
}
span.avatar-text img {
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
}

.header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.table th,
.table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.table tr:hover {
  background-color: #f1f1f1;
}
.filters {
  background: #d4d9df;
  padding: 5px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
}

.filters select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 25px;
  border: 1px solid #ccc;
}
.filters .col {
  margin-bottom: 1rem;
}
.table thead {
  background-color: #f1f1f1;
}

/* Job View */
.tab-section {
  background: #d4d9df;
  display: flex;
  padding: 5px;
  border-radius: 5px;
}
.job-view {
  background: #fff;
  border-radius: 10px;
}
.view-card .card-body {
  background: #fff;
  box-shadow: 0px 0px 10px #00000036;
  border-radius: 10px;
}
.view-card h6.card-title {
  background: #eaedf2;
  padding: 10px;
  margin-bottom: 20px;
}
.card-body-section {
  padding: 10px 20px 20px;
}
.tab-section button.btn.btn-outline-primary {
  color: #000;
  background: #eaedf2;
}
.tab-section .tab-buttons {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
.tab-section button.btn {
  width: 100%;
  white-space: nowrap;
}
.tab-section button.btn.active {
  background: #4d90fe;
  color: #fff;
}
.tab-section button.btn:hover {
  background: #4d90fe;
  color: #fff;
}

.tab-section a.btn.btn-outline-primary {
  color: #000;
  background: #eaedf2;
}
.tab-section .tab-buttons {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
.tab-section a.btn {
  width: 100%;
  white-space: nowrap;
}
.tab-section a.btn.active {
  background: #4d90fe;
  color: #fff;
}
.tab-section a.btn:hover {
  background: #4d90fe;
  color: #fff;
}
.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sbt {
  margin: 0 auto;
}
.upload-box {
  border: 2px dashed #ccc;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  color: #007bff;
  border-radius: 10px;
}
.btn-album {
  width: 48%;
}
.card-body-section .col-md-6,
.card-body-section .col-md-12,
.card-body-section .col-md-4 {
  position: relative;
}
.card-body-section label {
  position: absolute;
  background: #fff;
  left: 14px;
  padding: 2px 10px;
  top: -12px;
}
.card-body-section input,
.card-body-section select,
.card-body-section textarea {
  padding: 15px 15px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
}
.card-sectionbg.view-card {
  background: #fff;
  box-shadow: 0px 0px 10px #00000036;
  border-radius: 10px;
}
.overview-card {
  background: #fbfbfd;
  padding: 20px;
}
.overview-card ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px;
  padding: 0;
}
.overview-card ol li a {
  text-decoration: none;
}
.driver-card {
  background: #fff;
  padding: 20px;
}
.driver-card .card-body-section {
  padding: 0;
}
.driver-card .upload-box {
  text-align: left;
}

.driver-card .upload-box img {
  border-radius: 4px;
}
/*  */
.card-left ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.card-left ul li {
  /* margin-bottom: 15px; */
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
}
.card-left ul li.pt-s {
  background: #fbfbfd;
  padding: 15px;
}
.card-left ul li .form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.input-bx {
  max-width: 150px;
  margin: 0 0 20px 20px;
}
div#navbarMenu {
  display: none;
}
div#navbarMenu.show {
  display: block;
}
div#navbarMenu {
  position: absolute;
  height: 100vh;
}
.card-left select.form-select {
  max-width: 220px;
}
.card-left ul li.pt-s0 {
  display: flex;
  flex-direction: column;
  background: #fbfbfd;
  padding: 15px;
}
label {
  display: inline-block;
  font-size: 14px;
}
.text-col,
.text-col1 {
  color: #4d90fe;
}
.text-col input,
.text-col1 input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  color: #4d90fe;
}
.text-col input:focus {
  outline: none;
  border-color: #4d90fe;
}
.checkbox-section input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}
.checkbox-section .form-check {
  display: flex;
  align-items: center;
}
.checkinput {
  max-width: 300px;
}
.prepare-accessories {
  display: flex;
  width: 100%;
}
.col-22 {
  display: block;
  margin: 15px;
  width: 100%;
}
.chekc-d {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.chekc-d input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  color: #4d90fe;
  font-size: 12px;
}
.chekc-d span {
  width: 150px;
  font-size: 12px;
  color: #4d90fe;
}
.security-check {
  display: flex;
  justify-content: space-between;
  background: #fbfbfd;
}
.security-check h6 .input1 {
  color: #4d90fe;
  font-size: 14px;
  display: flex;
  font-weight: normal;
  gap: 10px;
  align-items: flex-end;
  margin: 10px 0 0;
}
.security-check h6 .input1 input {
  width: 20px;
  height: 20px;
}
.security-check .form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 20px;
}
.security-check1 {
  background: #fbfbfd;
}
.security-check1 .input1 {
  color: #4d90fe;
  font-size: 14px;
  display: flex;
  font-weight: normal;
  gap: 10px;
  align-items: flex-end;
  margin: 10px 0 0;
  padding: 0 20px;
  align-items: center;
}

.security-check1 .input1 input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  color: #4d90fe;
  font-size: 12px;
}
.security-check1 .form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 20px;
}
.color-blue {
  color: #4d90fe;
}
.v-detail-card {
  background: #fff;
  /* padding: 20px; */
}
.search {
  background: #eaedf2;
  padding: 20px;
  margin-bottom: 20px;
}
.order-heading {
  background: #eaedf2;
  padding: 20px;
  margin-bottom: 20px;
}
#orderList a {
  display: block;
  background: #eaedf2;
  padding: 5px 10px;
  margin: 0 0 10px;
  font-size: 14px;
  text-decoration: none;
  color: #303030;
}
#orderList a:hover,
#orderList a:focus,
#orderList a.active {
  background: #4d90fe;
  color: #fff;
}
.v-detail-card img {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  margin-bottom: 10px;
  width: 100%;
}
.photo-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
  padding: 4px;
  background: #fff;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.photo-box img:hover {
  transform: scale(1.5);
  z-index: 10;
}
.photos-ops {
  background: #fff;
  box-shadow: 0px 0px 10px #00000036;
  border-radius: 10px;
}
.photos-ops h2 {
  background: #eaedf2;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100vh;
    z-index: 999;
    transition: left 0.3s ease;
  }

  .main-content {
    padding: 10px;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
  }
  .sidebar {
    display: none;
  }

  .navbar {
    justify-content: center;
  }

  .container {
    padding: 15px;
  }

  .form-row {
    flex-direction: column;
  }

  .sidebar.open {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .overlay.show {
    display: block;
  }
  /*  */
  .tab-section .tab-buttons {
    flex-direction: column;
  }
  .tab-section .tab-buttons button {
    width: 100%;
    margin-bottom: 5px;
  }
}



