/* Pricing page styles */
.win98-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.win98-form label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 4px;
}

.win98-form input,
.win98-form select {
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  padding: 4px;
  background-color: #ffffff;
  border: 2px inset #808080;
  box-shadow: inset -1px -1px 0 #fff, inset 1px 1px 0 #808080;
}
.win98-box {
  border: 2px inset #808080;
  background-color: #d4d0c8;
  padding: 12px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Style the pricing calculator and example panes */
.pricing-split-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.left-pane,
.right-pane {
  flex: 1;
  min-width: 0; /* allow them to shrink properly */
}

.right-pane {
  margin-left: 0;
  text-align: center;
}

/** Split to vertical stack on smaller screens */
@media (max-width: 768px) {
  .pricing-split-container {
    flex-direction: column;
  }
}

/** Have the cursor change to a pointer when hovering over the form elements */
select,
option,
label[for="category"],
label[for="render-type"],
label[for="payment-method"] {
  cursor: url('../images/cursor/pointer.cur'), pointer;
}