.rental-form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 0 0;
  margin-bottom: 160px;
}
@media (max-width: 960px) {
  .rental-form-container {
    padding: 20px 0 0;
  }
}

@media (max-width: 640px) {
  .inner {
    width: 95vw;
  }
}

.simulator-main-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  border-left: 5px solid #0073aa;
  padding-left: 10px;
}

.simulator-lead-text {
  font-size: 14px;
  color: #5d5d5d;
  line-height: 1.6;
  margin-bottom: 5px;
}

.p-notice {
  font-size: 12px;
  color: #5d5d5d;
  margin-bottom: 25px;
}

.main-layout-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
}
@media (max-width: 960px) {
  .main-layout-wrapper {
    flex-direction: column;
  }
}

.form-inputs-area {
  flex: 1;
  min-width: 0;
  padding-bottom: 80px;
}
@media (max-width: 960px) {
  .form-inputs-area {
    padding-bottom: 110px;
  }
}

.form-section {
  margin-bottom: 15px;
}

#rental-days,
.item-qty {
  padding: 6px;
  width: 80px;
  font-size: 16px;
}
@media (max-width: 640px) {
  #rental-days,
  .item-qty {
    width: 60px;
    padding: 2px 6px;
  }
}

.button-section {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.preset-btn,
.reset-btn {
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background 0.2s;
}

.preset-btn {
  background-color: #0073aa;
}
.preset-btn:hover {
  background-color: rgb(0, 63.25, 93.5);
}

.reset-btn {
  background-color: #5d5d5d;
}
.reset-btn:hover {
  background-color: rgb(54.75, 54.75, 54.75);
}

.category-section {
  margin-bottom: 25px;
}

.category-title {
  font-size: 16px;
  color: #000;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.rental-table {
  width: 100%;
  border-collapse: collapse;
}
.rental-table th,
.rental-table td {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 640px) {
  .rental-table th,
  .rental-table td {
    font-size: 11px;
  }
}
.rental-table th {
  background: #eaeaea;
}

.total-summary-box {
  width: 290px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .total-summary-box {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ddedf2;
    border: none;
    border-top: 3px solid #0073aa;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  }
}

.summary-sticky-content {
  position: sticky;
  top: 20px;
  background: #ddedf2;
  border: 2px solid #0073aa;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.summary-sticky-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  color: #0073aa;
  border-bottom: 1px solid #0073aa;
  padding-bottom: 5px;
}
.summary-sticky-content p {
  margin: 8px 0;
  font-size: 14px;
}
@media (max-width: 960px) {
  .summary-sticky-content {
    position: static;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .summary-sticky-content h3 {
    display: none;
  }
}

.total-weight-display {
  font-weight: bold;
  color: #000;
}

.summary-divider {
  margin: 6px 0;
  border: 0;
  border-top: 1px dashed #ccc;
}
@media (max-width: 960px) {
  .summary-divider {
    border-top-color: #0073aa;
  }
}

@media (max-width: 960px) {
  .summary-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .summary-grid p {
    font-size: 12px;
    margin: 0;
  }
}

@media (max-width: 960px) {
  .summary-totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.grand-total {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
}
@media (max-width: 960px) {
  .grand-total {
    margin: 0;
    font-size: 12px;
  }
}

.grand-total-incl {
  font-size: 20px;
  font-weight: bold;
  color: #b13723;
  margin-top: 2px;
}
@media (max-width: 960px) {
  .grand-total-incl {
    margin: 0;
    font-size: 16px;
  }
}

.seo-faq-section {
  margin-top: 5px;
  padding: 20px;
  background: #eaeaea;
  border-radius: 6px;
  border: 1px solid #dedede;
}

.faq-section-title {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
}

.faq-item {
  margin-bottom: 15px;
}
.faq-item h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #0073aa;
}
.faq-item p {
  margin: 0;
  font-size: 14px;
  color: #5d5d5d;
  line-height: 1.5;
}/*# sourceMappingURL=simulation.css.map */