body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.repair-form-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(60, 72, 88, 0.15);
    padding: 40px 32px 32px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}
.repair-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}
.device-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.device-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 16px;
    padding: 18px 8px 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(60, 72, 88, 0.07);
}
.device-btn:hover, .device-btn:focus {
    background: #e0e7ef;
    box-shadow: 0 4px 16px rgba(60, 72, 88, 0.13);
}
.device-btn img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
}
.device-btn span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
}
@media (max-width: 600px) {
    .repair-form-container {
        padding: 20px 6px 16px 6px;
    }
    .device-categories {
        grid-template-columns: 1fr;
    }
}
.stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    gap: 0;
    position: relative;
}
.step {
    padding: 8px 18px;
    border-radius: 20px;
    background: #e0e7ef;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    z-index: 1;
}
.step-active {
    background: #2563eb;
    color: #fff;
}
.step-completed {
    background: #38bdf8;
    color: #fff;
}
.stepper-line {
    flex: 1 1 0;
    height: 4px;
    background: linear-gradient(90deg, #e0e7ef 0%, #e0e7ef 100%);
    margin: 0 0px;
    min-width: 32px;
    position: relative;
    top: 0;
    z-index: 0;
}
.step-completed + .stepper-line {
    background: linear-gradient(90deg, #38bdf8 0%, #38bdf8 100%);
}
.step-active + .stepper-line {
    background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
}
.brand-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
.brand-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(60, 72, 88, 0.07);
}
.brand-btn:hover, .brand-btn:focus {
    background: #e0e7ef;
    box-shadow: 0 4px 16px rgba(60, 72, 88, 0.13);
}
.model-input {
    margin-bottom: 18px;
}
.submit-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover, .submit-btn:focus {
    background: #1d4ed8;
}
@media (max-width: 600px) {
    .stepper-line {
        min-width: 12px;
    }
}
.confirm-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0 auto 24px auto;
    max-width: 900px;
}
.confirm-box {
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,72,88,0.08);
    padding: 24px 22px 18px 22px;
    min-width: 260px;
    flex: 1 1 260px;
    max-width: 320px;
    font-size: 1.07rem;
    color: #1e293b;
    border: 1.5px solid #e0e7ef;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
}
.dropoff-box {
    background: linear-gradient(120deg, #e0f2fe 0%, #f0fdfa 100%);
    border-color: #38bdf8;
}
.client-box {
    background: linear-gradient(120deg, #fef9c3 0%, #fef3c7 100%);
    border-color: #facc15;
}
.device-box {
    background: linear-gradient(120deg, #f3e8ff 0%, #e0e7ef 100%);
    border-color: #a78bfa;
}
.confirm-section-title {
    font-size: 1.13rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 1.3em;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .confirm-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .confirm-box {
        max-width: 100%;
    }
}
.repair-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
.repair-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f1f5f9;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(60, 72, 88, 0.07);
}
.repair-btn-img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}
.repair-btn span {
    font-size: 14px;
    color: #1e293b;
    text-align: center;
}
.repair-btn:hover, .repair-btn:focus {
    background: #e0e7ef;
    box-shadow: 0 4px 16px rgba(60, 72, 88, 0.13);
}

/* --- Mobile-friendly dropdown and input styles --- */
@media (max-width: 600px) {
  input[list], select, .model-input {
    font-size: 1.08rem;
    padding: 18px 38px 18px 16px;
    min-height: 54px;
    border-radius: 14px;
    margin-bottom: 18px;
    box-sizing: border-box;
  }
  input[list], select {
    background-size: 1.5em 1.5em;
    background-position: right 1.1em center;
  }
  .model-input {
    width: 100%;
    min-width: 0;
  }
  /* Make datalist input easier to tap */
  input[list]::-webkit-input-placeholder {
    font-size: 1.08rem;
  }
  input[list]::-webkit-datalist-button {
    min-width: 44px;
    min-height: 44px;
  }
}
