/* Body and Dark Mode */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
  }
  
  body.dark {
    background-color: #1a202c;
    color: white;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    width: 80%;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
  }
  
  /* Button Styling */
  button {
    cursor: pointer;
  }
  
  /* Tailwind Color Override */
  .bg-blue-500 {
    background-color: #1e40af;
  }
  
  /* Dark Mode and Other Customizations */
  body.dark .bg-indigo-600 {
    background-color: #2d3748;
  }
  
  .refresh-box {
    height: 400px;
    overflow: hidden; /* or use scroll if you want to allow scroll: overflow-y: auto; */
    border: 1px solid #ccc;
  }
  