@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

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

html {
  scroll-behavior: smooth;
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  background-color: white;
  color: black;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  max-width: 1000px;
  min-height: 100%;
  margin: auto;
  padding-bottom: 5rem;
}

.white {
  background-color: white;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  user-select: none;
}

a {
  text-decoration: none;
}

.nav-container {
  position: sticky;
  background-color: #0a9695;
  margin: 0 auto;
  padding: 2px;
  z-index: 1;
}

.rep-nav-container {
  position: sticky;
  background-color: #8BD8BD;
  margin: 0 auto;
  padding: 1em 0;
  z-index: 1;
}

/* .footer-container {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #243665;
  padding: 6px;
} */

/* .footer-container { */
/* position: fixed; */
/* left: 0; */
/* bottom: 0;
  width: 100%;
  max-width: 1000px;
  height: 60px; /* Adjust this value to suit your design */
/* background-color: #243665;
  color: #fff;
  text-align: center;
  padding-top: 20px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}  */

.bottom-stuff {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.bottom-stuff-1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.bottom-stuff-2 {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.bottom-stuff-3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;

}

.footer-font {
  font-size: .75rem;
  color: #8BD8BD;
}

.footer-font a {
  color: #8BD8BD;
}

.select-row {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.select-row-2 {
  position: relative;
  padding-left: 2rem;
}

.select-row label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.select-row label input[type="radio"] {
  margin-right: 0.5rem;
}

.select-row span {
  margin-left: 2rem;
}


.custom-row {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.custom-row label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.custom-row input[type="radio"] {
  margin-right: 0.5rem;
}

.custom-row-pref {
  position: relative;
  padding-left: 2rem;
  /* margin-bottom: 1rem; */
}

.custom-row-pref label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.custom-row-pref input[type="radio"] {
  margin-right: 0.5rem;
}


/* Shared header styles */
header,
.rep-header {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  padding: 0;
}

/* Background color for the main customer header */
header.sticky-rep-header {
  background-color: #243665;
}

/* Background color for the rep header */
.rep-header.sticky-rep-header {
  background-color: #8BD8BD;
}


.logo-wrap {
  text-align: center;

}

.logo {
  font-size: 2.25rem;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

.rep-logo {
  font-size: 2.25rem;
  color: #243665;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

.logo:hover {
  color: #8BD8BD
}


.nav-ul {
  position: fixed;
  top: 0;
  left: -100%;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 48px;
  transition: left 0.4s ease;
  overflow-y: auto;
  z-index: 200;
}

.nav-li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.nav-ul.active .nav-li {
  opacity: 1;
  transform: translateX(0);
}

.nav-ul.active {
  left: calc((100% - 1000px) / 2);
  overflow: hidden;
  z-index: 200;
}

@media (max-width: 1000px) {
  .nav-ul.active {
    left: 0;
  }
}

.nav-a {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: none;
}

.nav-a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
  color: #7dd3c0;
}

.hamburger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 4;
}


.hamburger.active {
  position: absolute;

}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.rep-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* HERO */

.hero {
  text-align: center;
  background-color: white;
  /* height: calc(100vh - 130px); */
  margin: 0 auto;
  /* padding-bottom: 60px; */

}


.login-hero {
  text-align: center;
  height: 100vh;
}

.hero h1 {
  margin-bottom: 0.1em;
}

.hero p {
  margin-top: 0.5em;
}


/* ANIMATIONS */

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger.active .rep-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: white;
}

.hamburger.active .rep-bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .rep-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: white;
}

/* TEXT STYLES */

.h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.2em;
  text-transform: capitalize;
}

.radio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1em;

}

.radio-button {
  font-size: 1rem;
}

.address {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  padding-left: 1.75em;
}



.single-line-column {
  display: flex;
  flex-direction: row;
  text-align: center;
  gap: 1em;
}

.single-line-column2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* Vertically aligns items */
  gap: 1em;
}

.centered-container {
  display: flex;
  justify-content: center;
  /* Horizontally aligns the checkbox */
}

.single-line-column3 {
  display: flex;
  align-items: center;
}

.centered-container3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  /* Adjust the value as needed */
}

.form-check-input {
  display: flex;
  justify-content: center;
  /* Aligns items horizontally */
  gap: 1em;
  /* Adjust the value as needed */
}

.form-rows-three {
  display: flex;
  text-align: left;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}



.single-line4 {
  display: flex;
  justify-content: flex-start;
}

.flex-item4 {
  box-sizing: border-box;
}

.flex-item4:nth-child(1) {
  flex-basis: 30%;
  flex-grow: 1;
  padding-left: 1rem;
}

.flex-item4:nth-child(2) {
  flex-basis: 70%;
  flex-grow: 1;
  padding-left: 1rem;
}



.view-order-three {
  display: flex;
  justify-content: flex-start;
}

.flex-item {
  box-sizing: border-box;
}

.flex-item:nth-child(1) {
  flex-basis: 45%;
  flex-grow: 1;
}

.flex-item:nth-child(2) {
  flex-basis: 45%;
  flex-grow: 1;
}

.flex-item:nth-child(3) {
  flex-basis: 10%;
  flex-grow: 1;
}

.flex-item p {
  text-align: left;
  margin: 0;
}


.view-order-three3 {
  display: flex;
  justify-content: flex-start;
}

.flex-item3 {
  box-sizing: border-box;
}

.flex-item3:nth-child(1) {
  flex-basis: 30%;
  flex-grow: 1;
}

.flex-item3:nth-child(2) {
  flex-basis: 45%;
  flex-grow: 1;
}

.flex-item3:nth-child(3) {
  flex-basis: 25%;
  flex-grow: 1;
}

.flex-item3 p {
  text-align: left;
  margin: 0;
}




.view-order-five {
  display: flex;
  justify-content: flex-start;
}

.flex-item5 {
  box-sizing: border-box;
}

.flex-item5:nth-child(1) {
  flex-basis: 20%;
  flex-grow: 1;
}

.flex-item5:nth-child(2) {
  flex-basis: 20%;
  flex-grow: 1;
}

.flex-item5:nth-child(3) {
  flex-basis: 20%;
  flex-grow: 1;
}

.flex-item5:nth-child(4) {
  flex-basis: 20%;
  flex-grow: 1;
}

.flex-item5:nth-child(5) {
  flex-basis: 20%;
  flex-grow: 1;
}

/* .content-wrapper {
  height: calc(100vh - 139px);
} */



.cc-label {
  width: 30%;
}

.order-form-content {
  margin-top: 1em;
}

.profile-content {
  margin-top: 1em;
}

.profile-content-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}

.profile-content-left {
  justify-content: left;
}

.profile-content-right {
  justify-content: right;
}

.sub-profile-content {
  margin-bottom: 0.5em;
}

.h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  text-transform: capitalize;
}

.h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  padding-bottom: .5rem;
}

.body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.body-half {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

half .address-small {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
}

.body-half-half {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
}

.subheading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* REUSABLES */




.container {
  margin-top: 50px;
  /* or whatever size you want */
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
  padding: 1em 1em;
}

/* ─── BUTTON SYSTEM ──────────────────────────────────────── */

.bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  padding: 24px 16px 32px;
}

/* Primary — solid dark navy, main forward action */
.continue {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #1a2d5a;
  border: 2px solid #1a2d5a;
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 10px;
  flex-grow: 2;
  flex-basis: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.2;
}
.continue:hover  { background-color: #243665; border-color: #243665; }
.continue:active { transform: scale(0.98); }

/* Secondary — outlined, back/nav actions */
.start-over {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: 2px solid #d0d0d0;
  color: #555;
  padding: 13px 16px;
  border-radius: 10px;
  flex-grow: 1;
  flex-basis: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s, transform 0.1s;
  line-height: 1.2;
}
.start-over:hover  { border-color: #999; color: #222; }
.start-over:active { transform: scale(0.98); }

/* Secondary green variant (My Orders nav button) */
.start-over-green {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: 2px solid #6abfa3;
  color: #1a7a3e;
  padding: 13px 16px;
  border-radius: 10px;
  flex-grow: 1;
  flex-basis: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  line-height: 1.2;
}
.start-over-green:hover  { background-color: #eaf4ee; }
.start-over-green:active { transform: scale(0.98); }

/* Destructive — cancel/delete actions */
.btn-danger {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: 2px solid #e0b0ae;
  color: #c0392b;
  padding: 13px 16px;
  border-radius: 10px;
  flex-grow: 1;
  flex-basis: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  line-height: 1.2;
}
.btn-danger:hover  { background-color: #fdecea; border-color: #c0392b; }
.btn-danger:active { transform: scale(0.98); }

/* ─────────────────────────────────────────────────────────── */


.page-title {
  text-align: center;
}

.page-sub-title {
  text-align: center;
  margin-top: 1.5em;
}

.page-sub-title-left {
  text-align: left;
  margin-top: 0.5em;
}



.total-box {
  position: relative;
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
  /* padding-left: 20px;
  padding-top: 20px; */
}



.column-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 0;
  right: 0;
}

.right1 {
  flex: 1;
  text-align: right;
}

.right2 {
  width: 75px;
  text-align: right;
}



.three-row-table-border {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  margin-bottom: 10px;
  border: 1px solid black;
  padding: 5px;
}

.three-row-table-tight {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}

.dropdown {
  width: 35px;
  height: 35px;
  padding: 5px;
  margin: 3px;
  font-size: inherit;
  text-align: center;
  border: 1px solid black;
  /* -webkit-appearance: none;
  -moz-appearance: none; */
  appearance: none;
  background-color: #ffffff;
}

.three-column-table {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1em;
  align-items: center;

}

/* .three-row-table {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.column1 {
  flex: 0 0 5%;
  align-self: flex-start;
}

.column2 {
  flex: 0 0 65%;
  align-self: flex-start;
}

.column3 {
  flex: 0 0 30%;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
} */


.three-row-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 50px; set a fixed height */
}

.column1 {
  flex: 1;
  /* adjust as needed */
  display: flex;
  justify-content: flex-start;
}

.column2 {
  flex: 6;
  /* adjust as needed */
  display: flex;
  justify-content: flex-start;
}

.column3 {
  flex: 1;
  /* adjust as needed */
  display: flex;
  justify-content: flex-end;
}

.three-row-table-dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 50px; set a fixed height */
}

.dates-column1 {
  flex: 1;
  /* adjust as needed */
  display: flex;
  justify-content: flex-start;
}

.dates-column2 {
  flex: 3;
  /* adjust as needed */
  display: flex;
  justify-content: flex-start;
}

.dates-column3 {
  flex: 4;
  /* adjust as needed */
  display: flex;
  justify-content: flex-end;
}

.rep-order-row {
  display: flex;
  flex-wrap: nowrap;
  padding-top: .5em;
  /* justify-content: space-between; */
}


.order-item {
  flex-shrink: 0;
}

.order-item1 {
  flex-basis: 25%;
}

.order-item2 {
  flex-basis: 35%;
}

.order-item3 {
  flex-basis: 35%;
}

.order-item4 {
  flex-basis: 5%;
  margin-left: auto;
  text-align: right;
}


.inside-container {
  margin-top: 50px;
  /* or whatever size you want */
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
  padding: 1em 1em;
}

.login-container {
  height: 100vh;
  max-width: 50em;
  width: 90%;
  margin: 0 auto;
  padding: 2em 0;
}

.sub-hero {
  max-width: 50em;
  width: 90%;
  margin: 0 auto;
  padding: 1em;
}

.form-rows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.label {
  margin-top: .75em;
  display: flex;
  align-self: flex-start;
  text-align: left;
}



.right-columns {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1rem;
}

.right-columns-greybg {
  margin-top: 5px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 1rem;
}

.edit-order {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 5px;
}

.edit-order-column1 {
  width: 35%;
  text-align: right;
}

.edit-order-column2 {
  width: 65%;
  text-align: left;
  gap: 5px;
  display: flex;
}

.edit-order-column2 input {
  font-size: 1rem;
  margin-bottom: 2px;
}


.weight-numbers {
  font-size: .75rem;
}


.form-item {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.dates {
  width: 150px;
  height: 35px;
  padding: 5px;
  margin: 3px;
  font-size: inherit;
  text-align: center;
  border: 1px solid black;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
}

.green-container {
  margin-top: 50px;
  /* or whatever size you want */
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
  padding: 1em 1em;
}

.white-container {
  height: 100vh;
  background-color: #ffffff;
  margin: 0 auto;
  /* padding: 1em 1em; */
}

.blue-container {
  height: 100vh;
  background-color: #f2f2f2;
  margin: 0 auto;
  padding: 1em 1em;
}

.btn {
  background-color: #243665;
  color: white;
  padding: 1em 1.5em;
  border-radius: 100px;
}

.btn-green {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-color: #1a2d5a;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-green:hover  { background-color: #243665; }
.btn-green:active { transform: scale(0.98); }

.ghost {
  background: none;
  border: 2px solid #8BD8BD;
  padding: 1em 1.5em;
  border-radius: 100px;
  color: black;
}

.addnew {
  background-color: #243665;
  color: white;
  padding: 0.5em 1em;
  border-radius: 50px;
}

.btn-small {
  padding-top: 2em;
}

input[type=text] {
  padding: 3px;
}

input[type=textarea] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #909090;
}

input[type=text-number] {
  width: 5rem;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #909090;
}

input[type=text-item] {
  width: 8rem;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #909090;
  align-items: center;
  text-align: center;
}

/* MEDIA QUERY */

@media (max-width: 440px) {

  .edit-order-column2 input[type="text"],
  .edit-order-column2 input[type="submit"] {
    font-size: .75rem;
    border-radius: 0px;
  }

  .body {
    font-size: 0.75rem;
  }

  .body-half {
    font-size: 0.75rem;
  }
}

@media (min-width: 560px) {
  .split {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }



  .btn-wrap {
    padding-top: 2em;
  }
}

img.truck {
  width: 100%;
  max-width: 250px;
}

@media (max-width: 500px) {
  .column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .btn-wrap {
    display: flex;
    flex-direction: column;
  }

  .btn {
    margin-bottom: 1em;
  }
}

/* LOGIN STYLING */

/* Center the login form */
.login-form {
  padding: 1em;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  margin: 0 auto;
  max-width: 430px;
  /* Set the maximum width of the login form */
}

.profile-form {
  padding: 1em;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 430px;
  /* Set the maximum width of the login form */
}

.addresses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.addresses-item {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  text-align: left;
  width: 100%;
  max-width: 400px;
  /* height: 200px; */
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.addresses-item-dotted {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 220px;
  margin: 10px;
  border: 1px dashed #ddd;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.addresses-item-dotted:hover {
  cursor: pointer;
}

/* confirm button */

/* #dlgConfirm {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 20px;
  background-color: white;
  border: 1px solid black;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#dlgConfirm p {
  margin: 0 0 20px;
}

#dlgConfirm button {
  display: block;
  margin: 0 auto;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#dlgConfirm button:hover {
  background-color: #0062cc;
} */



.cc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cc-item {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  text-align: left;
  width: 100%;
  max-width: 450px;
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.cc-item-dotted {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  max-width: 450px;
  margin: 10px;
  border: 1px dashed #ddd;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.cc-item-dotted:hover {
  cursor: pointer;
}

.double-underline {
  text-decoration: underline;
  border-bottom: 2px solid black;
  padding-bottom: 1px;
}



.last {
  margin-top: auto;
}

/* .address-item:last-child {
  align-self: flex-end;
} */

.line {
  background-color: #ddd;
  height: 2px;
  width: 100%;
}

/* Style the form fields */
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.profile-form input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 5px;
}

.profile-form input[type="submit"] {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  background-color: #243665;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

/* Style the login button */
.login-form input[type="submit"] {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  background-color: #243665;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  /* font-size: 16px; */
}

/* Style the error message */
.error-message {
  color: red;
  font-size: 14px;
  margin-top: 8px;
}




.body-container {
  padding: 5px;
  background-color: white;
}

.round-order-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;

}

.progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  /* min-height: 25px; */

}

.body-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 5px 5px 0 5px;
}

.body-content-left {
  text-align: left;
  width: 50%;

}

.body-content-right {
  text-align: left;
  padding-left: 5px;
  width: 50%;
}

.box-half-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4162b4;
  width: 100%;
  height: 100%;
  padding: 5px;
  color: white;
  white-space: nowrap;

}

.box-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #243665;
  width: 100%;
  height: 100%;
  padding: 5px;
  color: white;
  white-space: nowrap;

}

.box-green {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8BD8BD;
  width: 100%;
  height: 100%;
  padding: 5px;
  white-space: nowrap;

}

.box-grey {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: lightgray;
  width: 100%;
  height: 100%;
  padding: 5px;
  white-space: nowrap;

}

.del-dates {
  display: flex;
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 1px solid #ddd;

}

.del-dates-left {
  text-align: left;

}

.del-dates-right {
  text-align: right;
}


.bottom-date {
  display: flex;
  justify-content: flex-start;
  padding-left: 5px;
  padding-right: 5px;
  /* border-top: 1px solid #ddd; */
}

.filters {
  display: flex;
  justify-content: flex-end;
  padding-right: 5px;
  padding-bottom: 5px;

  /* border-top: 1px solid #ddd; */
}

.wash-preferences {
  display: flex;
  justify-content: flex-start;
  padding-left: 5px;
  padding-right: 5px;
  border-top: 1px solid #ddd;
}