.yc-moving-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
}

.yc-form-step {
    display: none;
}

.yc-form-step.active {
    display: block;
}

.yc-moving-field {
    margin-bottom: 20px;
}

.yc-moving-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.yc-moving-field input[type="text"],
input[type="email"],
input[type="tel"]
.yc-moving-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button.yc-next-btn,
button.yc-prev-btn {
    padding: 10px 20px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
}

button.yc-next-btn:hover,
button.yc-prev-btn:hover {
    background-color: #005e8a;
}

.step-navigation {
    margin-top: 20px;
    text-align: right;
}

#display-error {
    color: red;
    text-align: center;
    font-weight: bold;
}
/* Step 3: Surcharge/Discount checkbox list */
.yc-rule-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

.yc-rule-checkbox:hover {
    background: #f1f1f1;
}

.yc-rule-checkbox input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.yc-rule-checkbox label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    width: 100%;
}
/* Step 4: Inventory Weight Selection */
.yc-inventory-select-group {
    margin-bottom: 20px;
}

.yc-inventory-select-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

.yc-inventory-select-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
}

.yc-inventory-select-group select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.yc-moving-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 10px;
}

.yc-moving-summary h3 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.yc-summary-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.yc-summary-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a2540;
}

.yc-summary-card p,
.yc-summary-card ul {
    font-size: 0.95rem;
    color: #333;
    margin: 5px 0;
}

.yc-summary-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.yc-summary-list li {
    margin-bottom: 4px;
}

.yc-summary-card.highlight {
    background: #e6f2ff;
    border-left: 4px solid #007acc;
}

.yc-total-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a4f70;
    margin: 0;
}
/* Base Container */
.yc-moving-form-container {
    max-width: 800px;
    width: 95%;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Fields */
.yc-moving-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.yc-moving-field input[type="text"],
.yc-moving-field input[type="number"],
.yc-moving-field select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/* Step Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.step-navigation button {
    flex: 1;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 8px;
    background-color: #007acc;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.step-navigation button:hover {
    background-color: #005e99;
}

/* Recap Card Responsiveness */
.yc-moving-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.yc-summary-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* Adjustments for Small Screens */
@media (max-width: 768px) {
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .yc-summary-card h4 {
        font-size: 1rem;
    }

    .yc-total-amount {
        font-size: 1.2rem;
    }

    .yc-moving-summary h3 {
        font-size: 1.4rem;
    }
}
.yc-success {
  background: #e0f8e9;
  border-left: 4px solid #28a745;
  padding: 10px 15px;
  color: #155724;
  margin-top: 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 15px;
}