@import "https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap";
/* [project]/src/styles/OrderScreen.module.css [client] (css) */
body {
  font-family: Roboto, sans-serif;
  background-color: #f0f2f5;
  padding: 0;
  margin: 0;
  height: 100%;
  max-width: 100%;
}

.OrderScreen-module__Y6zbJG__order__screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.OrderScreen-module__Y6zbJG__container {
  margin: 0 auto;
}

.OrderScreen-module__Y6zbJG__header {
  background-color: #f47a44;
  text-align: center;
  height: 80px;
  top: 0;
  z-index: 11;
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.OrderScreen-module__Y6zbJG__header__title {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.OrderScreen-module__Y6zbJG__header__title span {
  font-weight: 700;
}

.OrderScreen-module__Y6zbJG__main {
  display: flex;
  flex-direction: row;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.OrderScreen-module__Y6zbJG__card {
  width: 304px;
  height: 350px;
  box-shadow: 0 0 15px #0000004d;
  border-radius: 5px;
  padding: 0 10px;
  margin-bottom: 20px;
  overflow: auto;
}

.OrderScreen-module__Y6zbJG__card__header {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.OrderScreen-module__Y6zbJG__card__order {
  font-size: 16px;
  text-align: center;
}

.OrderScreen-module__Y6zbJG__order__item {
  color: #757575;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  text-align: left;
}

.OrderScreen-module__Y6zbJG__order__item__btn {
  color: #fff;
  background-color: #00796b;
  opacity: .7;
  padding: 14px 6px;
  border: none;
  border-radius: 10px;
}

.OrderScreen-module__Y6zbJG__order__btn {
  color: #fff;
  background-color: #f47a44;
  opacity: .7;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
}

.OrderScreen-module__Y6zbJG__footer {
  background-color: #f47a44;
  text-align: center;
  height: 80px;
  bottom: 0;
  z-index: 11;
  position: sticky;
  display: flex;
  align-items: center;
}

.OrderScreen-module__Y6zbJG__footer__nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.OrderScreen-module__Y6zbJG__footer__nav a {
  padding: 26px 10px;
  font-size: 24px;
  text-decoration: none;
  color: inherit;
}

.OrderScreen-module__Y6zbJG__footer__nav li {
  color: #fff;
}

.OrderScreen-module__Y6zbJG__footer__nav a:hover {
  background-color: #e96823;
}

.OrderScreen-module__Y6zbJG__footer__nav a.OrderScreen-module__Y6zbJG__active {
  box-shadow: 0 0 15px #0000004d;
  font-weight: bold;
}

.OrderScreen-module__Y6zbJG__modalBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f2f5b3;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.OrderScreen-module__Y6zbJG__modalContent {
  width: 350px;
  height: 375px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.OrderScreen-module__Y6zbJG__modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.OrderScreen-module__Y6zbJG__closeBtn {
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.OrderScreen-module__Y6zbJG__modalBody {
  flex-grow: 1;
  overflow-x: auto;
}

.OrderScreen-module__Y6zbJG__couriersList {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.OrderScreen-module__Y6zbJG__courierItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 12px;
}

.OrderScreen-module__Y6zbJG__modalFooter {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.OrderScreen-module__Y6zbJG__header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.OrderScreen-module__Y6zbJG__logoutButton {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color .3s;
  margin-left: 40px;
}

.OrderScreen-module__Y6zbJG__logoutButton:hover {
  background-color: #d32f2f;
}

.OrderScreen-module__Y6zbJG__order__meta {
  display: flex;
  gap: 1rem;
  font-size: .9rem;
  color: #666;
  margin-top: .5rem;
}

.OrderScreen-module__Y6zbJG__order__address {
  margin: .5rem 0;
  font-size: .9rem;
  color: #444;
}

.OrderScreen-module__Y6zbJG__item__quantity {
  margin-left: .5rem;
  color: #666;
}

.OrderScreen-module__Y6zbJG__item__comment {
  margin-left: .5rem;
  font-size: .8rem;
  color: #888;
  font-style: italic;
}

.OrderScreen-module__Y6zbJG__card__header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.OrderScreen-module__Y6zbJG__card__order {
  padding: 1rem;
}

.OrderScreen-module__Y6zbJG__card {
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
  transform: scale(1);
  overflow: auto;
  background-color: #fff;
}

.OrderScreen-module__Y6zbJG__card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 28px #00000026, 0 10px 10px #0000001f;
  z-index: 10;
  position: relative;
}

.OrderScreen-module__Y6zbJG__order__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #666;
  margin-top: .5rem;
}

.OrderScreen-module__Y6zbJG__order__meta span {
  display: flex;
  align-items: center;
}

.OrderScreen-module__Y6zbJG__order__address {
  margin: .5rem 0;
  font-size: .9rem;
  color: #444;
  text-align: start;
}

.OrderScreen-module__Y6zbJG__order__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid #eee;
}

.OrderScreen-module__Y6zbJG__order__item:last-child {
  border-bottom: none;
}

.OrderScreen-module__Y6zbJG__errorMessage {
  color: #d32f2f;
  background-color: #ffebee;
  padding: 10px;
  border-radius: 4px;
  margin: 10px 0;
  text-align: center;
  font-size: 14px;
}

.OrderScreen-module__Y6zbJG__modalContent {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}

.OrderScreen-module__Y6zbJG__courierItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.OrderScreen-module__Y6zbJG__courierItem:last-child {
  border-bottom: none;
}

.OrderScreen-module__Y6zbJG__ordersContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.OrderScreen-module__Y6zbJG__searchContainer {
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.OrderScreen-module__Y6zbJG__searchInput {
  width: 90%;
  padding: .5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color .3s;
}

.OrderScreen-module__Y6zbJG__searchInput:focus {
  border-color: #4a90e2;
}

.OrderScreen-module__Y6zbJG__card__button {
  color: #fff;
  background-color: #f47a44;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
}


/* [project]/src/styles/LoginScreen.module.css [client] (css) */
.LoginScreen-module__46-dwq__loginContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #f0f2f5;
}

.LoginScreen-module__46-dwq__input {
  padding: 10px;
  font-size: 18px;
  margin: 10px 0;
  width: 20%;
}

.LoginScreen-module__46-dwq__button {
  padding: 10px;
  font-size: 18px;
  background-color: #f47a44;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 15%;
  border-radius: 8px;
}

.LoginScreen-module__46-dwq__button:hover {
  background-color: #e96823;
}

.LoginScreen-module__46-dwq__error {
  color: red;
  font-size: 16px;
  margin-top: 10px;
}


/*# sourceMappingURL=src_styles_52e5b0._.css.map*/
