.hours-container {
  padding-bottom: 40px;
}

.market-info {
  font-size: 20px;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.5;
}

.market-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.market-table th,
.market-table td {
  border: 1px solid #ccc;
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
}

.market-table th {
  background-color: #f4a61e;
  color: #fff;
  font-weight: 600;
}

.market-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.market-table .status-closed {
  color: #ff5733;
}

@media screen and (max-width: 768px) {
  .market-table th,
  .market-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .market-table th,
  .market-table td {
    padding: 8px 10px;
    font-size: 12px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: #d8dede 0px solid;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  font-size: 16px;
  white-space: nowrap;
}
th {
  background: #d4a430;
  font-weight: bold;
  color: #fff;
}
tr:nth-child(even) {
  background: #f3f3f3;
}
.status {
  display: flex;
  align-items: center;
}
.status-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.status-open {
  background: #00c896;
}
.status-closed {
  background: #ff7b00;
}
.flag {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  border-radius: 2px;
  vertical-align: middle;
}
.market-name {
  display: flex;
  align-items: center;
}
