body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f2f2f2;
    padding-top: 100px;
  }
  
  .counter-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  #count {
    font-size: 48px;
    margin: 20px 0;
  }
  
  .buttons button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #28a745;
    color: white;
    transition: background 0.3s;
  }
  
  .buttons button:hover {
    background: #1e7e34;
  }