/* center the image */
.wp_soft_thumbnail {
  display: flex;
  justify-content: center;
}
/* center the text */
table.wp-soft-info {
  width: 100%;
  /* align center */

  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-left: auto;
  margin-right: auto;
}
.wp-soft-info thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}
.wp-soft-info th,
.wp-soft-info td {
  border: 1px solid #e1edff;
  padding: 12px 15px;
}
.wp-soft-info tbody tr {
  border-bottom: 1px solid #dddddd;
}

.wp-soft-info tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.wp-soft-info tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}
.wp-soft-info tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}
.wp_soft_google_play img {
  width: 100px;
}
/* UL li info */
ul.wp-soft-info {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* background-color: #009879; */
}
ul.wp-soft-info li {
  border-bottom: 1px solid #009879;
  list-style: none;
  margin: 5px 0;
  padding: 5px 0;
}
ul.wp-soft-info li a {
  /* display: block; */
  /* color: white; */
  text-align: center;
  padding: 6px 8px;
  text-decoration: none;
  font-size: 1em;
}
/* dl info style like table*/

/* Style dl.wp-soft-info as a Single Column */
dl.wp-soft-info {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
}

dl.wp-soft-info dt,
dl.wp-soft-info dd {
  /* Remove default behaviors for a single column display */
  display: block; /* Treat dt and dd as block elements */
  margin-block-start: 0; /* Remove top margin */
  margin-block-end: 5px; /* Add bottom margin for spacing */
  padding: 10px; /* Cell padding */
  border-bottom: 1px solid #ddd; /* Table-like bottom border */
}

dl.wp-soft-info dt {
  font-weight: bold; /* Style dt for headers */
}
