/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #eee;
    text-align: center;
    padding: 50px;
  }
  .title {
    color: orange;
  }
  .game-container {
    background-color: #444;
    padding: 20px;
    margin: auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.7);
  }
  
  .score {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .products {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .product {
    width: 200px;
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s;
  }
  
  .product img:hover {
    transform: scale(1.05);
  }
  
  .product h2 {
    font-size: 18px;
    margin: 10px 0;
    color: #ccc;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
  }
  
  .vs {
    font-size: 24px;
    font-weight: bold;
    color: #bbb;
  }
  
  .result {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ddd;
  }

.price {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    min-height: 30px; /* Ensure space is reserved for the price display */
  }
  
  /* Style for the popup button */
.credit-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #ff9500;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.incorrect-button {
  padding: 10px 20px;
  background-color: #ff9500;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
