

/*Custom Style*/
* {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: bold;
}
.container-md {
    max-width: 1000px;
}
.container-sm {
    max-width: 700px;
}
.form-label {
    font-weight: bold;
}

.app-sidebar {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: fixed;
    left: 0;
    top: 54px;
    z-index: 9999;
    display: flex;
    align-items: stretch;
    width: 240px;
    flex-direction: column;
    overflow: auto;
    background-color: #ebebeb;
    transition: transform 0.3s linear;
    transform: translateX(-100%);
    height: calc(100vh - 54px);
  }
  .app-sidebar.show {
        transform: translateX(0%);
      }
  .toggle-sidebar {
      display: block;
      color: #fff;
      background: #000;
      border: none;
  }
  .navbar-nav {
      display: flex;
      align-items: center;
      flex-direction:row;
      gap: 10px;
  }
  
  @media (min-width: 1024px) {
    .app-sidebar {
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      position: static;
      z-index: 10;
      transform: translateX(0);
    }
    .toggle-sidebar {
          display: none;
      }
    
  }
  .app-menu {
    margin-top: 16px;
    padding: 16px;
    display: grid;
    gap: 4px;
  }
  .app-menu li {

  }
  .app-menu li a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    transition: background-color 0.2s, color 0.2s;
  }
  .app-menu li a:hover {
    background-color: #E8F5E9;
  }
  .app-menu li a.active {
    background-color: #fff;
  }
  .app-menu li a i {
    font-size: 15px;
  }
  .app-content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f5f3f3;
    height: calc(100vh - 54px);
  }
  
  .title-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e2e2e2;
}
.title-bar h1 {
    font-size: 16px;
    letter-spacing: normal;
    color: #000;
    line-height: normal;
}
.body-content {
    padding: 16px;
}
.add-car-form {
    padding: 0;
}

.fileinput-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.fileinput-button input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 200px !important;
    direction: ltr;
    cursor: pointer;
}
@media print {
  body {
    visibility: hidden;
  }
  #form-container {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.SignaturePlaceholder{
  position: absolute;
  top: 5px;
  left: 5px;
}