				   		
 <style>
    body {
      font-family: Arial, sans-serif;
      background: #f0f0f0;
      padding: 20px;
      margin: 0;
    }

    .page-content {
      transition: filter 0.3s ease;
    }

    .page-content.blurred {
      filter: blur(5px);
    }

    .form-container {
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 16px;
      padding: 20px;
      max-width: 600px;
      margin: auto;
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    h2 {
      text-align: center;
    }

    input, select, button {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border-radius: 12px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
    }

    button {
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #0056b3;
    }

    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      z-index: 9999;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .popup.active {
      opacity: 1;
      visibility: visible;
    }

    .popup-content {
      background-color: white;
      padding: 20px;
      border-radius: 16px;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .popup-content table.outer-table {
      width: 100%;
      border: 2px solid #000;
      border-collapse: collapse;
    }

    .popup-content table.outer-table td {
      border: none;
      padding: 10px;
      vertical-align: top;
    }

    .popup-content img {
      max-height: 60px;
      margin-bottom: 10px;
    }

    table.inner-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    .inner-table th, .inner-table td {
      border: 1px solid #999;
      padding: 8px;
      text-align: center;
    }

    .inner-table th {
      background-color: #f0f0f0;
    }

    .no-carpet {
      color: red;
      font-weight: bold;
      font-size: 18px;
      text-align: center;
    }

    .no-carpet span {
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    @media (max-width: 600px) {
      input, select, button {
        font-size: 14px;
      }
    }
  </style>