/* Smarando TradeIn - Stylesheet */

:root {
    --primary: #00a6be;
    --primary-dark: #002126;
    --primary-light: #e0f7fa;
    --success: #16a34a;
    --success-dark: #15803d;
    --danger: #dc2626;
    --danger-dark: #b91c1c;
    --warning: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--gray-100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003d47 100%);
    box-shadow: 0 2px 10px rgba(0, 33, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link.active {
    background: var(--primary);
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.user-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.875rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.user-location {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.user-name-link {
    text-decoration: none;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

/* Main */
.main {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Footer */
.footer {
    background: white;
    padding: 1rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: var(--success-dark);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: var(--danger-dark);
}

.btn-outline {
    background: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover:not(:disabled) {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* Header Button Overrides */
.header .btn-outline,
.header .btn.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header .btn-outline:hover,
.header .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

.btn-block {
    width: 100%;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.form-section h3 {
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkbox-group {
    margin-bottom: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-error {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: var(--success);
    border: 1px solid #bbf7d0;
}

/* Flash messages */
.flash-messages {
    margin-bottom: 1rem;
}

.flash {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.flash-error {
    background: #fef2f2;
    color: var(--danger);
}

.flash-success {
    background: #f0fdf4;
    color: var(--success);
}

/* Login Page */
.login-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003d47 50%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
}

.login-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 33, 38, 0.3);
    padding: 2.5rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.login-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.login-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.login-logo-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.login-logo-sub {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.login-header h1 {
    font-size: 2rem;
    color: var(--primary);
}

.login-header p {
    color: var(--gray-500);
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Wizard */
.wizard-container {
    position: relative;
}

.wizard-header {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.wizard-header h1 {
    margin-bottom: 1rem;
}

.wizard-steps {
    display: flex;
    gap: 0.5rem;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--gray-400);
    transition: all 0.3s;
}

.step.active {
    background: var(--primary);
    color: white;
}

.step.completed {
    background: var(--success);
    color: white;
}

.step-number {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
}

.wizard-content {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Device Search */
.device-search {
    max-width: 600px;
}

#device-search {
    font-size: 1.25rem;
    padding: 1rem;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--gray-100);
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item:last-child {
    border-bottom: none;
}

.device-brand {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.device-model {
    font-weight: 500;
}

.form-group {
    position: relative;
}

/* Storage Options */
.storage-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.storage-option {
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-width: 120px;
}

.storage-option:hover {
    border-color: var(--primary);
}

.storage-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.storage-size {
    font-size: 1.25rem;
    font-weight: 600;
}

.storage-price {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Selected Device */
.selected-device {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.selected-device h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.device-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.device-info .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--success);
}

/* Optional Fields */
.optional-fields {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.optional-fields h3 {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* Condition Check - Improved UX */
.condition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.condition-header h2 {
    margin: 0;
}

.condition-progress {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.condition-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.condition-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all 0.2s;
    position: relative;
}

.condition-card.answered {
    border-color: var(--success);
    background: linear-gradient(to right, #f0fdf4, white);
}

.condition-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    padding-right: 2rem;
}

.condition-answers {
    display: grid;
    gap: 0.75rem;
}

.condition-answers.two-col {
    grid-template-columns: 1fr 1fr;
}

.condition-answers.multi-col {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.condition-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: all 0.15s;
    min-height: 80px;
}

.condition-btn:hover {
    border-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.condition-btn.good:hover {
    border-color: var(--success);
    background: #f0fdf4;
}

.condition-btn.bad:hover {
    border-color: var(--danger);
    background: #fef2f2;
}

.condition-btn.neutral:hover {
    border-color: var(--warning);
    background: #fffbeb;
}

.condition-btn.selected {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.condition-btn.good.selected {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.condition-btn.bad.selected {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.condition-btn.neutral.selected {
    background: var(--warning);
    border-color: var(--warning);
    color: white;
}

.condition-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.condition-label {
    font-size: 1rem;
    font-weight: 600;
}

.condition-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-card.answered .condition-status .status-icon::after {
    content: '✓';
    color: var(--success);
    font-size: 1.25rem;
    font-weight: bold;
}

/* Legacy question styles (for backwards compatibility) */
.questions-container .question-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.questions-container .question-card.answered {
    border-color: var(--success);
}

.question-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.answer-buttons {
    display: flex;
    gap: 1rem;
}

.answer-buttons.yes-no .answer-btn {
    flex: 1;
    max-width: 200px;
}

.answer-buttons.choice .answer-btn {
    flex: 1;
}

.answer-btn {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.answer-btn:hover {
    border-color: var(--primary);
}

.answer-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.answer-btn[data-value="yes"].selected {
    background: var(--success);
    border-color: var(--success);
}

.answer-btn[data-value="no"].selected {
    background: var(--danger);
    border-color: var(--danger);
}

.answer-icon {
    font-size: 1.25rem;
}

/* Offer */
.offer-container {
    text-align: center;
    padding: 2rem 0;
}

.offer-price {
    margin-bottom: 2rem;
}

.offer-price .label {
    display: block;
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.offer-price .price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.offer-breakdown {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
}

.breakdown-item.deduction .amount {
    color: var(--danger);
}

.breakdown-item.addition .amount {
    color: var(--success);
}

.offer-device-info {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.decision-container {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.decision-question {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.decision-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Complete */
.complete-container {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-400);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.complete-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.invoice-info {
    margin: 1.5rem 0;
}

/* Session Summary */
.session-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    max-width: 400px;
    margin: 2rem auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row .label {
    color: var(--gray-500);
}

.summary-row .value.price {
    font-weight: 600;
    color: var(--success);
}

.status-rejected {
    color: var(--danger);
    font-weight: 500;
}

.session-id {
    margin-top: 2rem;
    font-size: 0.75rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.loading-overlay.show {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utilities */
.text-muted {
    color: var(--gray-500);
}

.price {
    color: var(--success);
    font-weight: 600;
}

/* Admin Styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-card .label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-card .value.price {
    color: var(--success);
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.card h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background: var(--gray-50);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

tr:hover {
    background: var(--gray-50);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-completed {
    background: #dcfce7;
    color: var(--success);
}

.status-cancelled {
    background: #fef2f2;
    color: var(--danger);
}

.status-pending {
    background: #fef3c7;
    color: var(--warning);
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination a, .pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-600);
}

.pagination a:hover {
    background: var(--gray-50);
}

.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .form-row {
        flex-direction: column;
    }

    .wizard-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 calc(50% - 0.25rem);
    }

    .decision-buttons {
        flex-direction: column;
    }

    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }

    .offer-price .price {
        font-size: 3rem;
    }

    .storage-options {
        flex-direction: column;
    }

    .storage-option {
        min-width: 100%;
    }
}

/* USB Detection */
.usb-detection {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.usb-detection.device-selected {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.usb-detection-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.usb-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.usb-icon svg {
    display: block;
}

.usb-text {
    flex: 1;
    min-width: 200px;
}

.usb-text h3 {
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.usb-text p {
    color: var(--gray-600);
    margin: 0;
}

#btn-usb-detect {
    flex-shrink: 0;
}

#btn-usb-detect .btn-icon {
    font-size: 1.25rem;
}

.usb-status {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.usb-status .detecting {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
}

.usb-status .found {
    color: var(--success);
    font-weight: 500;
}

.usb-status .not-found {
    color: var(--warning);
}

.usb-status .error {
    color: var(--danger);
}

.spinner-small {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.usb-device-info {
    margin-top: 1rem;
}

.detected-device-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.detected-device-card h4 {
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detected-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detected-info-grid .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 4px;
}

.detected-info-grid .info-row .label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.detected-info-grid .info-row .value {
    font-weight: 500;
    color: var(--gray-800);
}

.detected-info-grid .info-row.highlight {
    background: #dcfce7;
}

.detected-info-grid .info-row.highlight .value.price {
    color: var(--success);
    font-size: 1.125rem;
}

.detected-info-grid .info-row.warning {
    background: #fef3c7;
}

.detected-info-grid .info-row.warning .value {
    color: #b45309;
}

#btn-use-detected {
    width: 100%;
}

#btn-use-detected:disabled {
    background: var(--gray-300);
}

.divider-or {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--gray-400);
}

.divider-or::before,
.divider-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.divider-or span {
    padding: 0 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* ========================================
   NEW WIZARD APP - Modern Clean Design
   ======================================== */

.wizard-app {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Bar */
.wizard-progress {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #3b82f6);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.progress-step.active {
    color: var(--primary);
}

.progress-step.completed {
    color: var(--success);
}

/* Screens */
.wizard-screen {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: fadeIn 0.4s ease;
}

.wizard-screen.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}

.screen-content {
    flex: 1;
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.screen-header {
    text-align: center;
    margin-bottom: 2rem;
}

.screen-header h1 {
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.screen-hint {
    color: var(--gray-500);
    font-size: 1rem;
}

.screen-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
}

/* Device Detection Card */
.device-detect-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px dashed #7dd3fc;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.device-detect-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.detect-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.device-detect-card h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.device-detect-card p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.btn-detect {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-detect:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.spinner-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Detected Device */
.detected-device {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideIn 0.4s ease;
}

.detected-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.detected-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detected-icon {
    font-size: 2.5rem;
}

.detected-info {
    flex: 1;
}

.detected-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.detected-info p {
    color: var(--gray-500);
    margin: 0;
}

.detected-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.btn-use-device {
    width: 100%;
    background: var(--success);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-use-device:hover {
    background: var(--success-dark);
}

/* Search Divider */
.search-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--gray-400);
}

.search-divider::before,
.search-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.search-divider span {
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.2s;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-input::placeholder {
    color: var(--gray-400);
}

/* Storage Selection */
.storage-selection {
    margin-top: 2rem;
    animation: fadeIn 0.3s ease;
}

.storage-selection h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.storage-btn {
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.storage-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.storage-btn.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.storage-btn .size {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.storage-btn .price {
    font-size: 0.875rem;
    color: var(--success);
    margin-top: 0.25rem;
}

/* Selected Summary */
.selected-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    animation: fadeIn 0.3s ease;
}

.summary-device {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-model {
    font-size: 1.25rem;
    font-weight: 600;
}

.summary-storage {
    color: var(--gray-500);
}

.summary-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
}

/* Navigation Buttons */
.btn-next, .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-next {
    background: var(--primary);
    color: white;
    margin-left: auto;
}

.btn-next:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateX(3px);
}

.btn-next:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.btn-back {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
}

.btn-back:hover {
    background: var(--gray-50);
    transform: translateX(-3px);
}

.btn-complete {
    background: var(--success);
}

.btn-complete:hover:not(:disabled) {
    background: var(--success-dark);
}

/* Question Carousel */
.condition-counter {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.questions-carousel {
    position: relative;
    overflow: hidden;
}

.question-slide {
    display: none;
    animation: slideIn 0.4s ease;
}

.question-slide.active {
    display: block;
}

.question-slide.exit {
    animation: slideOut 0.3s ease forwards;
}

.question-content {
    text-align: center;
    margin-bottom: 2rem;
}

.question-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.question-hint {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Condition Examples */
.condition-examples {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.condition-examples.three {
    gap: 2rem;
}

.example {
    text-align: center;
}

.example-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.example-image svg {
    width: 100%;
    height: 100%;
}

.example span {
    font-size: 0.875rem;
    font-weight: 500;
}

.example.good span {
    color: var(--success);
}

.example.bad span {
    color: var(--danger);
}

.example.neutral span {
    color: var(--warning);
}

/* Answer Options */
.answer-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.answer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 3rem;
    min-width: 160px;
    border: 3px solid var(--gray-200);
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.answer-btn.yes:hover {
    border-color: var(--success);
    background: #f0fdf4;
}

.answer-btn.no:hover {
    border-color: var(--danger);
    background: #fef2f2;
}

.answer-btn.good:hover {
    border-color: var(--success);
    background: #f0fdf4;
}

.answer-btn.neutral:hover {
    border-color: var(--warning);
    background: #fffbeb;
}

.answer-btn.bad:hover {
    border-color: var(--danger);
    background: #fef2f2;
}

.answer-btn.selected {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.answer-btn.yes.selected {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.answer-btn.no.selected {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.answer-btn.good.selected {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.answer-btn.neutral.selected {
    background: var(--warning);
    border-color: var(--warning);
    color: white;
}

.answer-btn.bad.selected {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.answer-icon {
    font-size: 2.5rem;
}

.answer-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Offer Screen */
.offer-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
}

.offer-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
}

.offer-device {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.offer-amount {
    margin-bottom: 1.5rem;
}

.offer-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.offer-breakdown {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breakdown-row:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.breakdown-row.total {
    font-weight: 600;
    font-size: 1rem;
    padding-top: 0.75rem;
}

.breakdown-row .negative {
    color: var(--danger);
}

/* Decision Section */
.decision-section {
    width: 100%;
    max-width: 500px;
}

.decision-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.decision-buttons {
    display: flex;
    gap: 1.5rem;
}

.decision-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 3px solid var(--gray-200);
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.decision-btn:hover {
    transform: translateY(-4px);
}

.decision-btn.accept:hover {
    border-color: var(--success);
    background: #f0fdf4;
}

.decision-btn.reject:hover {
    border-color: var(--danger);
    background: #fef2f2;
}

.decision-icon {
    font-size: 3rem;
}

.decision-btn.accept .decision-icon {
    color: var(--success);
}

.decision-btn.reject .decision-icon {
    color: var(--danger);
}

.decision-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Seller Form Modern */
.seller-form-modern {
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.form-card h3 {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.optional-tag {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 400;
    text-transform: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field:last-child {
    margin-bottom: 0;
}

.form-field.small {
    grid-column: span 1;
    max-width: 150px;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: white;
    transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Checkbox Modern */
.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 0;
}

.checkbox-modern input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-modern input:checked + .checkmark {
    background: var(--success);
    border-color: var(--success);
}

.checkbox-modern input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: var(--primary);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.payment-option input {
    display: none;
}

.payment-icon {
    font-size: 2rem;
}

.payment-label {
    font-weight: 600;
    color: var(--gray-700);
}

/* Done Screen */
.done-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    min-height: 500px;
}

.done-animation {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success);
    animation: circle 0.6s ease-in-out forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke: var(--success);
    animation: check 0.3s 0.4s ease-in-out forwards;
}

@keyframes circle {
    100% { stroke-dashoffset: 0; }
}

@keyframes check {
    100% { stroke-dashoffset: 0; }
}

.done-screen h1 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.done-subtitle {
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.done-info {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    min-width: 280px;
}

.done-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.done-info .info-label {
    color: var(--gray-500);
}

.done-info .info-value {
    font-weight: 600;
}

.done-info .info-value.price {
    color: var(--success);
    font-size: 1.25rem;
}

.done-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-pdf, .btn-print {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pdf:hover, .btn-print:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-new-purchase {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--success);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-new-purchase:hover {
    background: var(--success-dark);
    transform: scale(1.02);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

.loading-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 640px) {
    .wizard-app {
        margin: 0 -1rem;
    }

    .screen-content {
        border-radius: 0;
        padding: 1.5rem;
    }

    .screen-header h1 {
        font-size: 1.5rem;
    }

    .question-text {
        font-size: 1.25rem;
    }

    .answer-btn {
        padding: 1.5rem 2rem;
        min-width: 140px;
    }

    .answer-icon {
        font-size: 2rem;
    }

    .answer-text {
        font-size: 1rem;
    }

    .condition-examples {
        gap: 1.5rem;
    }

    .example-image {
        width: 70px;
        height: 70px;
    }

    .offer-price {
        font-size: 3rem;
    }

    .decision-buttons {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.small {
        max-width: 100%;
    }

    .btn-next, .btn-back {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .done-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-pdf, .btn-print {
        width: 100%;
        justify-content: center;
    }
}
