.inquiry-page--header {
  font-size: 1.8rem;
  text-align: center;
}
.container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .header h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .table-container {
            overflow-x: auto;
            padding: 20px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 12px 8px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            color: #495057;
            white-space: nowrap;
        }

        td {
            border: 1px solid #dee2e6;
            padding: 10px 8px;
            text-align: center;
            font-size: 13px;
            background: white;
        }

        tr:nth-child(even) td {
            background: #f8f9fa;
        }

        tr:hover td {
            background: #e3f2fd;
        }

        .checkbox-col {
            width: 40px;
        }

        .product-name-col {
            min-width: 150px;
            text-align: left;
        }

        .cat-no-col, .cas-no-col {
            min-width: 100px;
        }

        .size-col, .grade-col, .standard-col {
            min-width: 80px;
        }

        .registration-col {
            min-width: 120px;
        }

        .quantity-col {
            min-width: 100px;
        }

        .cancel-col {
            width: 60px;
        }

        input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        input[type="number"] {
            width: 80px;
            padding: 4px;
            border: 1px solid #ccc;
            border-radius: 4px;
            text-align: center;
        }

        .cancel-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            transition: background 0.3s;
        }

        .cancel-btn:hover {
            background: #c82333;
        }

        .actions {
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .select-all {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #007bff;
            color: white;
        }

        .btn-primary:hover {
            background: #0056b3;
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
        }

        .btn-secondary:hover {
            background: #545b62;
        }

        .btn-success {
            background: #28a745;
            color: white;
        }

        .btn-success:hover {
            background: #1e7e34;
        }

        .selected-count {
            color: #007bff;
            font-weight: 600;
        }

        .empty-row td {
            color: #6c757d;
            font-style: italic;
            text-align: center;
        }

        select {
            width: 100%;
            padding: 4px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background: white;
            font-size: 12px;
        }

        select:focus {
            outline: none;
            border-color: #007bff;
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
            }
            
            .table-container {
                padding: 10px;
            }
            
            th, td {
                padding: 8px 4px;
                font-size: 12px;
            }
            
            .actions {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }
            
            .action-buttons {
                justify-content: center;
            }
        }

.form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.page-inquirybox {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.page-inquirybox label {
  width: 20%;
  font-weight: 500;
  color: #333;
  min-width: 120px;
  text-align: right;
  font-size: 14px;
}

.required {
  color: #e74c3c;
  margin-left: 4px;
}

.page-inquirybox input,
.page-inquirybox textarea,
.page-inquirybox select {
  /* flex: 1;         */
  width: 40%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fafbfc;
}
.page-inquirybox input[type="number"] {
    text-align: left;
}

.page-inquirybox input:focus,
.page-inquirybox textarea:focus {
  outline: none;
  border-color: #ff7675;
  box-shadow: 0 0 0 3px rgba(255, 118, 117, 0.1);
  background-color: white;
}

.page-inquirybox textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.submit-btn {
  width: 12%;
  margin: auto;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff7675, #fd79a8);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #e84393, #ff6b9d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 118, 117, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.page-inquirybox.description {
  align-items: flex-start;
}

.page-inquirybox.description label {
  margin-top: 12px;
}

@media screen and (max-width: 600px) {
  .page-inquirybox {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .page-inquirybox label {
    text-align: left;
    min-width: auto;
  }

  .form-container {
    padding: 30px 20px;
  }
}
