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

@font-face {
    font-family: "Franklin Gothic Extra Condensed";
    src: url('../Fonts/FranklinExtraCondGothic/FranklinExtraCondGothic.eot');
    src: url('../Fonts/FranklinExtraCondGothic/FranklinExtraCondGothic.eot?#iefix') format('embedded-opentype'),
        url('../Fonts/FranklinExtraCondGothic/FranklinExtraCondGothic.woff2') format('woff2'),
        url('../Fonts/FranklinExtraCondGothic/FranklinExtraCondGothic.woff') format('woff'),
        url('../Fonts/FranklinExtraCondGothic/FranklinExtraCondGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #2c3e50;
  line-height: 1.6;
  padding-bottom: 50px;
}

header {
  background-color: #fff;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#logo_container img {
  width: 366px;
}

/* #main-container {
  display: flex;
  background-color: pink;
} */

.same-height{
  display: flex;
  align-items: stretch;
}

.flex{
  display: flex;
}

/* #customer-data{
  display: flex;
  align-items: stretch;
} */

.input-item {
  width: 100%;
  padding: 8px;
}

.input-item label {
  color: #323232;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}

/* .divBorder input, .divBorder .input-select {
  margin-bottom: 24px;
} */

.input-select, input[type="text"] {
  width: 85%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.2s ease;
}

.input-select:focus, input[type="text"]:focus {
  outline: none;
  border-color: #007bff;
}

textarea {
  width: 85%;
  height: 350px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.2s ease;
  resize: none;
}

.container {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  margin: auto;
}

.left-div, .right-div {
  background: #9DB6BE;
  padding: 20px;
  float: left;
}

.left-div {
  width: 40%;
  border-radius: 44px 0 0 44px;
}

.right-div {
  width: 60%;
  border-radius: 0 44px 44px 0;
}

.divBorder{
  border-right: 1px solid black;
  padding-right: 90px;
}

.left-div h1, .right-div h2 {
  margin-bottom: 1.5rem;
  color: #003366;
  font-size: 1.4rem;
}

input[type="button"], #confirmBtn {
  border-radius: 10px;
  border: 1px solid #9DB6BE;
  background: #dadada;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin: auto;
  padding: 10px 25px;
  color: #070707;
}

input[type="button"]:hover, #confirmBtn:hover {
  background-color: #0056b3;
  color: #fff;
}

.disabled-button {
  background-color: #aaa !important;
  cursor: not-allowed;
}

.target_icons {
  width: 24px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

#confirmBtn{
  margin-left: 15px;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

#click-dimensions {
  padding: 1rem;
  margin: 2rem;
  background-color: #e9ecef;
  border-radius: 8px;
}

#revise_order {
  text-align: center;
  margin: 2rem;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
  clear: both;
  float: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ccc;
}

th {
  background-color: #007bff;
  color: #fff;
  text-align: center;
}

.responsive-table {
  overflow-x: scroll;
  /* white-space: nowrap; */
  scrollbar-width: auto;         /* Firefox */
  -ms-overflow-style: auto;      /* Internet Explorer 10+ */
}

/* WebKit browsers (Chrome, Safari) */
.scroll-container::-webkit-scrollbar {
  display: block;
  height: 8px;
}

.not-found {
  color: red;
  font-weight: bold;
  background-color: rgb(238, 190, 185);
}

.not-assigned {
  color: rgb(222, 115, 0);
  font-weight: bold;
  background-color: rgb(246, 185, 120);
}

.align-right{
  float:right;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 1rem;
  }

  #logo_container img {
    width: 100%;
  }

  #devs_tools {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  input[type="button"] {
    float: none;
    width: 100%;
    margin-top: 1rem;
  }

  .left-div, .right-div{
    width: 100%;
    border-radius: 44px;
    margin: 15px 0;
  }

  .divBorder{
    border: none;
    padding: 0;
  }
}
