body {
      font-family: Arial, sans-serif;
      text-align: center;
      margin: 20px;
      background: url('https://raw.githubusercontent.com/Nimeshpatel90/Harikrupa-Society/c9979706902be5ce4affe8f00ea6228bb4bbfe20/wave.svg')
        no-repeat center bottom;
      background-size: cover;
      min-height: 100vh;
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    #carTable {
      display: table !important;
      visibility: visible !important;
      opacity: 1 !important;
      position: static !important;
      width: 100% !important;
      height: auto !important;
  }
  #carTable th:first-child,
#carTable td:first-child {
    display: none;
}

    #logo {
      max-width: 500px;
      margin: 10px auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    #logo:hover {
      transform: scale(1.1);
    }

    input, select, button {
      margin: 10px 5px;
      padding: 10px;
      border: 1px solid rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
    }

    input:focus, select:focus {
      outline: none;
      border-color: royalblue;
      box-shadow: 0 0 8px rgba(65, 105, 225, 0.8);
    }

    button {
      cursor: pointer;
      font-weight: bold;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    button:hover {
      background: rgba(0, 0, 0, 0.2);
      transform: scale(1.05);
    }

    table {
      margin: 20px auto;
      border-collapse: collapse;
      width: 90%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    th, td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: center;
    }

    th {
        
      cursor: pointer;
      user-select: none;
    }

    tr:hover {
      background-color: rgba(200, 200, 200, 0.5);
    }

         .paid-row {
        background-color: rgba(0, 0, 0, 0.1);
        color: black;
      }

      .pending-row {
        background-color: rgba(255, 127, 127, 0.1);
        color: rgba(112, 41, 99, 1);
        font-weight: bold;
      }

    #qrCode {
      width: 150px;
      margin: 20px auto;
      display: block;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    #loading {
      display: none;
      color: black;
      margin-top: 20px;
      font-size: 18px;
       margin-top: 20px;
    }

    #totalAmountRow {
      font-weight: bold;
      font-size: 1.2rem;
    }
