/* General Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    margin: 0;
    padding: 0;
  }
  
  .container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
  }
  
  /* Buttons */
  button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Color Options */
  .color-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  
  .color-options button {
    margin: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
  }
  
  #colorBox {
    margin: 20px auto;
    width: 100px;
    height: 100px;
    border: 2px solid #333;
  }
  
  @media (max-width: 768px) {
    button {
      font-size: 14px;
      padding: 8px 15px;
    }
  
    #colorBox {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 480px) {
    button {
      font-size: 12px;
      padding: 6px 10px;
    }
  
    #colorBox {
      width: 60px;
      height: 60px;
    }
  }
  