/* ===============================
   Global Font & Reset
   =============================== */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #2C3E50;
}

/* ===============================
   Header
   =============================== */
.designer-header {
  background-color: #2C3E50; /* dark blue header */
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.designer-logo {
  height: 70px;
}

.designer-title {
  color: #ffffff;
  font-size: 2rem;
  margin: 0;
  white-space: nowrap;
}

/* ===============================
   Main Container
   =============================== */
.designer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   Labels, Inputs, Selects, Buttons
   =============================== */
label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

input, select, button {
  margin-top: 5px;
  padding: 6px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

button {
  cursor: pointer;
}

/* ===============================
   Orange Buttons
   =============================== */
.btn-orange {
  background-color: #FF6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
}

.btn-orange:hover {
  opacity: 0.85;
}

.email-submit-wrapper {
  display: flex;
  align-items: flex-end; /* aligns button with bottom of input */
  gap: 10px; /* space between input and button */
  margin-top: 2px;
  margin-bottom: 60px; /* added spacing after submit button */
}


/* ===============================
   Canvas & Editor
   =============================== */
.canvas-wrapper {
  width: 90%;
  max-width: 100%;
  margin-bottom: 24px; /* adjust as needed */
}


#signCanvas {
  display: block;
  margin-top: 20px;
  margin-bottom: 40px; /* should now work */
  border: 2px solid #2C3E50;
  border-radius: 10px;
  background-color: #ffffff;
  max-width: 100%;
}


/* Text editing input for canvas */
#textEditInput {
  position: absolute;
  display: none;
  font-size: 24px;
  border: 1px solid #FF6600;
  border-radius: 4px;
  padding: 2px;
  background: transparent; /* No white box behind text */
  color: #2C3E50;
  font-family: 'Roboto', sans-serif;
}

.text-help {
  margin: 4px 0 12px;
  font-size: 0.8rem;
  font-style: italic;
  color: #555;
}


/* ===============================
   Yard Options
   =============================== */
#yardOptions label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

#yardOptions input[type="checkbox"] {
  margin-right: 5px;
}

/* ===============================
   Responsive Design
   =============================== */
.design-summary {
  background-color: #f7f7f7;
  padding: 10px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
}

.design-summary p {
  margin: 4px 0;
}


@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  #signCanvas {
    width: 100%;
    height: auto;
  }
}

#customerNotes {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

label[for="customerNotes"] {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: bold;
}

/* Tight spacing between Name and Email */
.tight-label {
  margin-bottom: 6px;
}

.tight-input {
  margin-bottom: 6px;
}


