/* =========================
   IMPORTS & BASE RESETS
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;

  height: 100%;
  background-color: #ffffff;
}

/* =========================
   TYPOGRAPHY & HEADINGS
   ========================= */
.heading {
  margin-top: 10px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
      display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px ;
    margin-left: -160px;
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container2 {
  /* padding: 36px 150px 32px 150px; */
  margin: 0px auto;
  width: 80vw;
}

/* Exhibitor Registration Form Card Styles */
.exhibitor-form-card {
  background: #00425e;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(38,76,102,0.18), 0 1.5px 8px 0 #faad32;
  padding: 36px 32px 32px 32px;
  margin: 40px auto 32px auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.exhibitor-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(250,173,50,0.12) 0%, rgba(38,76,102,0.08) 100%);
  z-index: 0;
  border-radius: 22px;
}
.exhibitor-form-card h2 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 24px;
  color: #faad32;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(38,76,102,0.12);
}
.exhibitor-form-card h4 {
  color: #faad32;
  font-size: 1.1em;
  margin: 22px 0 10px 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.exhibitor-form-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.exhibitor-form-col {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}
.exhibitor-form-col-full {
  flex: 1 1 100%;
}
.exhibitor-form-card input[type="text"],
.exhibitor-form-card input[type="email"],
.exhibitor-form-card input[type="tel"],
.exhibitor-form-card input[type="url"],
.exhibitor-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(250,173,50,0.18);
  border-radius: 10px;
  font-size: 1.08em;
  background: rgb(255, 255, 255);
  color: #000000;
  margin-top: 4px;
  margin-bottom: 2px;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.exhibitor-form-card input[type="text"]:focus,
.exhibitor-form-card input[type="email"]:focus,
.exhibitor-form-card input[type="tel"]:focus,
.exhibitor-form-card input[type="url"]:focus,
.exhibitor-form-card textarea:focus {
  border-color: #faad32;
  outline: none;
  background: #f4efc5;
  color: #00425e;
}
.exhibitor-form-card input[type="submit"] {
  background: #faad32;
  color: #00425e;
  border: none;
  border-radius: 10px;
  padding: 12px 36px;
  font-size: 1.15em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(38,76,102,0.08);
  transition: background 0.2s, color 0.2s;
  margin-top: 10px;
}
.exhibitor-form-card input[type="submit"]:hover {
  background: #00425e;
  color: #faad32;
  border: 1.5px solid #faad32;
}
.exhibitor-form-card input[type="hidden"] {
  display: none;
}
.exhibitor-form-card textarea {
  min-height: 90px;
  resize: vertical;
}

/* Stall Details Card UI */
.stall-details {
  background: #00425e;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(38,76,102,0.18), 0 1.5px 8px 0 #faad32;
  padding: 36px 32px 32px 32px;
  margin: 40px auto 32px auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: none;
}
.stall-details::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(250,173,50,0.12) 0%, rgba(38,76,102,0.08) 100%);
  z-index: 0;
  border-radius: 22px;
}
.stall-heading {
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 28px;
  color: #faad32;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(38,76,102,0.12);
}
.stall-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}
.inner-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
  padding: 18px 18px 16px 18px;
  background: rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(38,76,102,0.08);
  border: 1.5px solid rgba(250,173,50,0.18);
  transition: box-shadow 0.2s, background 0.2s;
  width: 100%;
  max-width: 100%;
}
.inner-div:hover {
  background: rgba(250,173,50,0.18);
  box-shadow: 0 4px 16px 0 rgba(38,76,102,0.16);
}
.stall-info strong {
  color: #faad32;
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.stall-info span {
  color: #fff;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.status-available {
  color: #00425e;
  background: #faad32;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1.08em;
  margin-top: 4px;
  box-shadow: 0 1px 4px 0 rgba(38,76,102,0.10);
  display: inline-block;
}

/* =========================
   TABLES & STALL INFO
   ========================= */
.stall-info-table-wrapper {
  max-width: 620px;
  margin: 0 auto;
}
.stall-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5em;
  background: none;
}
.stall-info-table td {
  border: none !important;
  background: none !important;
  font-size: 1.1em;
  color: #222;
  padding: 6px 10px;
  vertical-align: middle;
  text-align: left;
}
.stall-info-table tr td:first-child strong,
.stall-info-table tr td strong {
  color: #555;
  font-weight: 600;
}

.footer-details {
  font-size: 26px;
  line-height: 1.4;
  color: #00425e;
  text-align: right;
}

.stall-size-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.stall-size {
  background: #00425e;
  padding: 8px 14px;
  border: 1.5px solid rgba(250,173,50,0.18);
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(38,76,102,0.08);
  transition: background 0.2s ease;
}

.stall-size:hover {
  background: rgb(0, 0, 0);
}

@media (max-width: 600px) {
  html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container2 {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2vw;
    box-sizing: border-box;
  }
  .stall-details {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    padding: 18px 6px;
    margin: 18px auto;
    border-radius: 14px;
    box-shadow: 0 4px 16px 0 rgba(38,76,102,0.12), 0 1px 4px 0 #faad32;
  }
  .stall-info {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .inner-div {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 8px;
    font-size: 1em;
    align-items: flex-start;
  }
  .exhibitor-form-card {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    padding: 18px 6px;
    margin: 18px auto;
    border-radius: 14px;
    box-shadow: 0 4px 16px 0 rgba(38,76,102,0.12), 0 1px 4px 0 #faad32;
  }
  .exhibitor-form-fields {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 8px;
  }
  .exhibitor-form-col, .exhibitor-form-col-full {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .exhibitor-form-card input[type="text"],
  .exhibitor-form-card input[type="email"],
  .exhibitor-form-card input[type="tel"],
  .exhibitor-form-card input[type="url"],
  .exhibitor-form-card textarea {
    font-size: 1em;
    padding: 10px 8px;
    box-sizing: border-box;
  }
  .exhibitor-form-card input[type="submit"] {
    width: 100%;
    padding: 12px 0;
    font-size: 1em;
    margin-top: 8px;
  }
  .status-available {
    font-size: 1em;
    padding: 4px 10px;
    border-radius: 6px;
  }
}


@media (max-width: 600px) 
{

}