/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #1f2937; /* dark gray (Tailwind bg-gray-900) */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .container {
    text-align: center;
    max-width: 600px;
    background-color: #374151; /* Tailwind bg-gray-800 */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #f3f4f6; /* Tailwind gray-100 */
  }
  
  .quote-box {
    background-color: #1f2937;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  #quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  #author {
    text-align: right;
    font-weight: 500;
    color: #9ca3af; /* Tailwind gray-400 */
  }
  
  button#new-quote {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    background-color: #4b5563; /* Tailwind gray-700 */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button#new-quote:hover {
    background-color: #6b7280; /* Tailwind gray-500 */
  }
  