* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  #container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .box {
    width: 300px;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 16px;
    transition: transform 0.3s ease;
  }
  
  .box:hover {
    transform: translateY(-5px);
  }
  
  .img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  h3 {
    margin: 12px 0;
    font-size: 1.2rem;
    color: #333;
  }
  
  p {
    margin: 6px 0;
    font-size: 1rem;
    color: #666;
  }
  
  .green {
    color: #28a745; 
    font-weight: bold;
  }
  
  .red {
    color: #dc3545; 
    font-weight: bold;
  }
  
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  