/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 18 2024 | 13:06:02 */
.api-data-table table, .api-data-table th, .api-data-table td {
  border: none;
  text-align: center;
}
.countdown-parent-container {
  text-align: center; /* This will center the child inline-block elements horizontally */
  background-color: #202020; /* Background color for the entire parent container */
  padding: 20px; /* Add some padding around the container */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); /* Horizontal offset, vertical offset, blur radius, spread radius, color */
}

#countdown {
  display: inline-block; /* Allows the element to be centered by text-align */
  font-weight: bold; /* Make the font bold */
  font-size: 3em; /* Large font size */
  color: #e1caa6; /* Font color */
  background-color: transparent; /* Make the background transparent or any desired color */
  padding: 10px; /* Add some padding around the text */
  border-radius: 10px; /* Optional: Rounds the corners of the countdown box */
}

.time-container {
  display: inline-block;
  background-color: #202020; /* Match the background of the parent container */
  margin: 0 10px; /* Spacing between each time container */
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

/* Style for the time value */
.time {
  display: block;
  font-size: 1em; /* Large font size for the time value */
  color: #e1caa6; /* Font color */
}

/* Style for the time label */
.label {
  display: block;
  font-size: 0.3em; /* Smaller font size for the label */
  color: #e1caa6; /* Font color */
}

.fifth-row td {
  border-bottom: 2px solid green; /* Add green bottom border */
  position: relative; /* Needed for absolute positioning of the icons */
}

.fifth-row td:first-child::before,
.fifth-row td:last-child::after {
  content: '';
  position: absolute;
  top: 10px; /* Position the icons above the cell */
  width: 30px; /* Width of the image */
  height: 30px; /* Height of the image */
  background-image: url('https://proptradingacademy.com/wp-content/uploads/2024/06/Golden-medal-icon-with-ribbon-on-transparent-background-PNG.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.fifth-row td:first-child::before {
  left: 0; /* Align with the left edge of the first cell */
}

.fifth-row td:last-child::after {
  right: 0; /* Align with the right edge of the last cell */
}
