body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}
/* IconButton styles */
.icon-button {
  width: 48px;
  height: 48px;
  border-radius: 8px; /* Set to 0 for sharp corners */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-button:hover {
  background-color: #f5f5f5;
}

/* Badge styles */
.custom-badge .MuiBadge-dot {
  background-color: orange;
  height: 15px;
  min-width: 15px;
  border: 2px solid #fff;
  top: 2px;
  right: 2px;
}

.custom-badge .MuiBadge-standard {
  background-color: red;
  /* height: 15px;
	min-width: 15px;
	border: 2px solid #fff; */
  top: 2px;
  right: 2px;
}

.custom-badg-light .MuiBadge-dot {
  background-color: orange;
  height: 15px;
  min-width: 15px;
  border: 2px solid #fff;
  top: 2px;
  right: 2px;
}

.custom-badge-light .MuiBadge-standard {
  background-color: red;
  /* height: 15px;
	min-width: 15px;
	border: 2px solid #fff; */
  top: 2px;
  right: 2px;
}

.custom-badg-dark .MuiBadge-dot {
  background-color: orange;
  height: 15px;
  min-width: 15px;
  border: 2px solid #424242;
  top: 2px;
  right: 2px;
}

.custom-badge-dark .MuiBadge-standard {
  background-color: red;
  height: 15px;
  min-width: 15px;
  border: 2px solid #424242;
  top: 2px;
  right: 2px;
}

.icon-button-image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #ccc;
}
.icon-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Ensure the image is round */
}

.drawer-heading {
  color: #fff;
  font-size: 2.75rem;
  font-weight: bold;
}

.MuiBreadcrumbs-li a {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.MuiButton-root {
  padding: 5px;
}

.MuiButton-root.disabled {
  /* background-color: grey !important; */
  /* color: #eee !important;
	padding: 5px; */
}

.MuiButton-root:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  /* background-color: #f7a428 !important; */
}
.MuiCheckbox-root.Mui-checked {
  color: black;
}
.buyerpopup {
  /* position: absolute; */
  /* top: 100px; */
  width: 500px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 15px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* display: flex; */
}

.newpopup {
  height: 350px;
}
.rejectpopup {
  height: 420px;
}

.buyerpopup .buyers {
  height: 80%;
  overflow-y: scroll;
}

.buyerpopup .buyers > div {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  min-height: 65px; /*65*/
  border-bottom: 1px solid #e4e4e4;
}
.buyerpopup .buyers > div p {
  padding: 0 10px;
}

.buyerpopup .buttons {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 0px);
}
.select {
  overflow-y: scroll;
  height: 70%;
  border: 1px solid #e4e4e4;
  margin-bottom: 10px;
}
.selectBuyer {
  display: flex;
  align-items: center;
}

.offerpopup {
  max-height: 480px;
  /* width: 600px; */
  /* position: absolute; */
  /* top: 100px; */
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 20px;

  flex-direction: column;
  justify-content: space-between;
}
.offerinputgroup {
  display: grid;
  grid-template-columns: auto auto;
}
.offerinput {
  width: 98%;
  margin-bottom: 15px;
}
.offerpopup .buttons {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 0px);
}
button {
  cursor: pointer;
}

/*Charts  */

.estudio {
  width: 100%;
  /* height: calc(100% - 64px);  remove this if the charts is overlapping */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.estudio .cards {
  height: 42%;
  width: 100%;
  padding: 20px;
}

.cards .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cards .heading .buttons button {
  margin: 0 5px;
}

.estudio .bottomchart {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-between;
}
.bottomchart .chart {
  width: 48%;
  padding: 15px;
  align-content: center;
}

@media screen and (max-width: 728px) {
  .estudio {
    height: auto;
  }
  .cards {
    margin: 10px 0;
  }
  .cards .heading {
    /* column-gap: 2; */
    flex-wrap: wrap;
    /* flex-direction: column; */
  }
  .estudio .recharts-responsive-container {
    min-height: 250px;
  }
  .bottomchart {
    flex-direction: column;
  }
  .estudio .bottomchart > div {
    width: 100%;
    min-width: 100%;
    margin: 10px 0;
  }
}

/* new offer */
.newofferpopup {
  height: auto;
  width: auto;
  /* position: absolute; */
  /* top: 100px; */
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Mui-checked {
  /* color: #85b854 !important; */
}
.Mui-focused {
  color: #000 !important;
}

.newofferpopup .options {
  display: flex;
  margin: 20px 0;
}
.newofferpopup .options > div {
  /* width: 30%; */
  margin-right: 25px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.tipode {
  display: flex;
  margin: 25px 0;
}
.tipode .radiogroup > div {
  margin: 0 0 20px 0;
}
.tipode > div {
  max-width: 300px;
  margin: 0 25px 25px 0;
  /* margin-right: 25px; */
}
.offerte {
  margin-top: 20px;
}
.offerte > div {
  min-width: 300px;
  display: flex;
  justify-content: space-between;
}
.newofferpopup .buttons {
  display: flex;
  justify-content: flex-end;
}

.auditlog {
  height: 90%;
  max-height: 70vh;
  border: 1px solid #e4e4e4;
  width: 70%;
  background-color: #fff;
  overflow-y: scroll;
}

.logcontainer {
  width: auto;
  min-height: 125px;
  background-color: #ededed;
  display: flex;
  justify-content: space-evenly;
  border-radius: 10px;
  margin: 5px;
}
