@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
html {
  overflow-y: hidden;
  height: 100%;
}
body {
  height: 100%;
  overflow: auto;
}
@media (min-width: 700px) {
  .container {
    margin: 0 auto;
    padding: 0px 30px !important;
  }
  .nav {
    gap: 20px;
  }
  .profile-details,
  .seller-auction-details {
    display: flex;
  }
  .seller-list,
  .profile-form {
    min-width: 500px;
    width: 50%;
    max-width: 50%;
  }
  .sub-container {
    min-width: 500px;
    width: 100%;
    max-width: 70%;
  }
  .auction-graph {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .nav li {
    margin: 5px 0px;
  }
  .seller-list,
  .profile-form {
    min-width: 350px;
    max-width: 50%;
    width: 100%;
  }
  .profile-details,
  .seller-auction-details {
    display: block !important;
  }
  .container {
    padding: 0 30px !important;
  }
  .auction-graph {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .graph {
    margin-top: 15px;
  }
}
.graph {
  display: block;
  align-content: center;
  height: 100%;
}
.accordion-item {
  background-color: #fff;
}
.detail-logo {
  display: flex;
  justify-content: center;
}
.thead-custom {
  background-color: #0d6efd;
  color: white;
}
.right-collapse.collapse:not(.show) {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.right-collapse.collapse.show {
  transform: translateX(0);
}
.seller-item {
  background: #fff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #ddd;
}
.seller-logo {
  width: 80px;
}
.subtitle {
  font-size: 25px;
  font-weight: 600;
  margin: 90px 0px 20px 0px;
}
.nav-custom {
  flex-direction: row-reverse;
}
.table-custom {
  border: 1px solid #ddd;
}
.logout {
  color: white !important;
  background-color: #de3546 !important;
}
