.container_360 .container_2d {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.container_360 .container_2d img {
  width: 100%;
}

.container_360 .container_3d{
  width: 100%;
  margin-top: 3rem;
  height: 40vw;
}

.container_360 .table_container {
  /* overflow-x: auto; */
  /* padding: 20px; */
  background: #f9f9f9;
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
}

.container_360 .custom-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.container_360 .custom-table thead tr {
  border-bottom: 1px solid #ccc;
}

.container_360 .custom-table th {
  text-align: left;
  padding: 14px 20px;
  background-color: #f0f0f0;
  color: #333;
}

.container_360 .custom-table th:nth-child(odd) {
  background-color: #e8e8e8;
}

.container_360 .custom-table thead tr:nth-child(even) th {
  background-color: #ffffff;
  color: #555;
}

.container_360 .custom-table thead tr:hover th {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .container_360 .custom-table th {
    font-size: 14px;
    padding: 10px 14px;
  }
}

.container_360 .form_container{
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  /* border: 1px solid; */
  margin-top: 2rem;
}
.container_360 .form_container .input_container{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.container_360 .form_container .input_container .input_box{
  flex-basis: 300px;
  flex-grow: 1;
}
.container_360 .form_container .input_container .input_box input{
  width: 100%;
  padding: .8rem;
  border-radius: .5rem;
  outline: none;
  border: 1px solid var(--gray-color);
}
.container_360 .form_container .input_container .input_box textarea{
  width: 100%;
  padding: .8rem;
  height: 100px;
  border-radius: .5rem;
  outline: none;
  border: 1px solid var(--gray-color);
}
.container_360 .form_container .input_container .input_box input:focus,
.container_360 .form_container .input_container .input_box textarea:focus{
  border: 1px solid var(--green-color);
}
.container_360 .form_container .recaptcha_container{
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}