table {
      width: 100%;
      border-collapse: collapse;
    }
    th, td {
      padding: 20px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    th {
      background-color: #ff6f61;
      color: white;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    tr:nth-child(even) {
      background-color: #fff;
    }
    tr:hover {
      background-color: #f7f7f7;
    }
    .logo-cell {
      text-align: center;
    }
    .logo-cell img {
      max-width: 60px;
      max-height: 60px;
      border-radius: 50%;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
    .logo-cell img:hover {
      transform: scale(1.1);
    }
    .state-cell {
      font-weight: bold;
      color: #00cc99;
    }
    .remark-cell {
      font-style: italic;
      color: #888;
    }
    .button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ff6f61;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      transition: background-color 0.3s ease;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    }
    .button:hover {
      background-color: #ff4d3f;
    }
    .button:active {
      transform: translateY(2px);
      box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    }
    .header {
      text-align: center;
      padding: 30px 0;
    }
    .header h1 {
      margin: 0;
      color: #ff6f61;
      font-size: 36px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .header p {
      margin-top: 10px;
      font-size: 18px;
      color: #555;
    }
    
    /* Media Queries for Responsive Design */
    @media only screen and (max-width: 768px) {
      .container {
        width: 100%;
        border-radius: 0;
        margin: 20px auto;
        box-shadow: none;
      }
      table {
        width: 100%;
      }
      th, td {
        padding: 15px;
      }
      .button {
        display: block;
        margin: 20px auto;
      }
    }