body {
  background-color: #f8f9fa;
  color: #212529;
  font-family: math;
}
.hero {
  background: linear-gradient(to right, #6c757d, #000000);
  padding: 25px;
  color: cornsilk;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}
.post-body h2 {
  color: #5a0b0b;
  font-weight: bold;
}
nav {
  font-family: system-ui;
}
.navbar-brand {
  color: cornsilk;;
  font-family: cursive;
  font-weight: bold;
}
.circle-pc {
  display: inline-block;
  padding: 6px;
  border: 1px solid sandybrown;
  border-radius: 50%;
  color: cornsilk;
  background-color: brown;
  font-family: cursive;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.footer {
  background-color: #343a40;
  color: #f8f9fa;
  padding: 20px 0;
}
.btn-brown {
  background-color: brown;
  color: cornsilk;
  border: 1px solid sandybrown;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-brown:hover {
  background-color: #4e3629;
  transform: scale(1.05);
}

.btn-brown:focus {
  outline: none; /* Elimina el contorno al hacer clic */
}
.card-img-top {
  height: 200px;
  /* Fixed height for article images */
  object-fit: cover;
  /* Maintain aspect ratio */
}

.hero-form {
  margin: auto;
}

.post-cat {
  text-decoration: none;
  padding: 3px 7px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 17px;
}

.post-cat:hover {
  color: #fff;
}

.posted-time {
  color: #fff;
}

.post-meta {
  text-transform: capitalize;
  font-size: 14px;
}

.post-meta span {
  font-family: "Poppins", sans-serif;
  margin-right: 8px;
  display: inline-block;
}

.post-meta span a {
  color: #999;
}

.post-meta.white span {
  color: #fff;
}

.post-meta.white a {
  color: #fff;
}

.post-meta span i {
  margin-right: 5px;
}

.post-author a {
  color: #999;
}

.post-author a:hover {
  color: #dc3545;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 2px;
  overflow: hidden;
}

.breadcrumb {
  color: #777;
  margin: 20px 0 20px 0;
  padding: 0;
  background: none;
  font-weight: bold;
}

.breadcrumb-wrapper {
  background: #fff;
  border-radius: 5px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb li {
  margin: 5px;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  img {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    height: auto !important;
  }
}
/*Stars*/
.star-rating {
  direction: rtl; /* Invertimos para facilitar hover */
  unicode-bidi: bidi-override;
  font-size: 2rem;
  cursor: pointer;
  display: inline-block;
}

.star {
  color: #ccc;
  transition: color 0.2s;
}

.star:hover,
.star:hover ~ .star {
  color: gold;
}

.star.selected,
.star.selected ~ .star {
  color: gold;
}
.post-start {
  background: white;
  border-radius: 5px;
}
/*Tables*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: #fff;
  text-align: left;
}

table th, table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  vertical-align: middle;
}

table tr:nth-child(even) {
  background-color: #f8f9fa; /* similar a .table-striped */
}

table tr:hover {
  background-color: #e9ecef; /* similar a .table-hover */
}

table thead {
  background-color: #f1f1f1;
  font-weight: bold;
}
iframe {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border: 6px solid #3e3e3e; /* marco tipo TV */
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background-color: #000;
  display: block;
  margin: 1rem auto;
}

.amazon-link {
    font-size: 18px;
    font-weight: bold;
    color: blue;
}
