/* _content/AutoBodyCollectInfo/Pages/Collect.cshtml.rz.scp.css */
/* Mobile-first styles for Collect page */

/* Welcome Screen */
.collect-welcome[b-7t0briwmf0] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.image-placeholder[b-7t0briwmf0] {
    height: 50vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.welcome-image[b-7t0briwmf0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.placeholder-content[b-7t0briwmf0] {
    text-align: center;
    padding: 2rem;
}

.placeholder-content svg[b-7t0briwmf0] {
    opacity: 0.9;
}

.placeholder-content p[b-7t0briwmf0] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.welcome-content[b-7t0briwmf0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.welcome-title[b-7t0briwmf0] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.welcome-subtitle[b-7t0briwmf0] {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 320px;
}

.btn-start-recording[b-7t0briwmf0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-start-recording:hover[b-7t0briwmf0] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Recording Overlay */
.recording-overlay[b-7t0briwmf0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.camera-preview[b-7t0briwmf0],
.recorded-video[b-7t0briwmf0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.recording-timer[b-7t0briwmf0] {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10;
}

.recording-dot[b-7t0briwmf0] {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-b-7t0briwmf0 1s infinite;
}

@keyframes pulse-b-7t0briwmf0 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.recording-controls[b-7t0briwmf0] {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.btn-control[b-7t0briwmf0] {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    min-width: 80px;
}

.btn-redo[b-7t0briwmf0] {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-redo:hover[b-7t0briwmf0] {
    background: #c82333;
    color: white;
}

.btn-done[b-7t0briwmf0] {
    background: #28a745;
    color: white;
    border: none;
}

.btn-done:hover[b-7t0briwmf0] {
    background: #218838;
    color: white;
}

/* Record Button */
.btn-record[b-7t0briwmf0] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 4px solid white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-record:hover[b-7t0briwmf0] {
    transform: scale(1.05);
}

.record-icon[b-7t0briwmf0] {
    width: 60px;
    height: 60px;
    background: #ff4444;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Stop Button */
.btn-stop[b-7t0briwmf0] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 4px solid white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-stop:hover[b-7t0briwmf0] {
    transform: scale(1.05);
}

.stop-icon[b-7t0briwmf0] {
    width: 32px;
    height: 32px;
    background: #ff4444;
    border-radius: 4px;
}

/* Play/Pause Button */
.btn-play-pause[b-7t0briwmf0] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 4px solid white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-play-pause:hover[b-7t0briwmf0] {
    transform: scale(1.05);
}

.play-icon[b-7t0briwmf0] {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 0 18px 30px;
    border-color: transparent transparent transparent #1b6ec2;
    margin-left: 6px;
}

.pause-icon[b-7t0briwmf0] {
    display: flex;
    gap: 8px;
}

.pause-icon[b-7t0briwmf0]::before,
.pause-icon[b-7t0briwmf0]::after {
    content: '';
    width: 10px;
    height: 36px;
    background: #1b6ec2;
    border-radius: 2px;
}

/* Close Recording Button */
.btn-close-recording[b-7t0briwmf0] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.btn-close-recording:hover[b-7t0briwmf0] {
    background: rgba(0, 0, 0, 0.7);
}

/* Video List Screen */
.collect-video-list[b-7t0briwmf0] {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin: -1rem;
}

.video-list-container[b-7t0briwmf0] {
    flex: 1;
    padding: 1rem;
}

.video-thumbnails[b-7t0briwmf0] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.video-thumbnail-item[b-7t0briwmf0] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.75rem;
    position: relative;
}

.video-thumbnail-wrapper[b-7t0briwmf0] {
    position: relative;
    width: 120px;
    height: 90px;
    flex-shrink: 0;
}

.video-thumbnail[b-7t0briwmf0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #000;
}

.video-play-overlay[b-7t0briwmf0] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-play-overlay:hover[b-7t0briwmf0] {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay svg[b-7t0briwmf0] {
    color: white;
    opacity: 0.9;
}

.video-info[b-7t0briwmf0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-label[b-7t0briwmf0] {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.video-duration[b-7t0briwmf0] {
    color: #666;
    font-size: 0.85rem;
}

.btn-remove-video[b-7t0briwmf0] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dc3545;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.btn-remove-video:hover[b-7t0briwmf0] {
    background: #c82333;
    transform: scale(1.1);
}

.btn-add-video[b-7t0briwmf0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    border-radius: 12px;
    border-style: dashed;
    border-width: 2px;
    font-weight: 500;
}

/* Continue Section */
.continue-section[b-7t0briwmf0] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.btn-continue[b-7t0briwmf0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .collect-welcome[b-7t0briwmf0] {
        margin: 0 auto;
        max-width: 600px;
    }

    .welcome-title[b-7t0briwmf0] {
        font-size: 2.25rem;
    }

    .welcome-subtitle[b-7t0briwmf0] {
        font-size: 1.1rem;
        max-width: 400px;
    }

    .collect-video-list[b-7t0briwmf0] {
        max-width: 600px;
        margin: 0 auto;
    }

    .video-thumbnail-wrapper[b-7t0briwmf0] {
        width: 160px;
        height: 120px;
    }
}
/* _content/AutoBodyCollectInfo/Pages/CollectStep2.cshtml.rz.scp.css */
/* Mobile-first styles for Collect Step 2 */

.collect-step2[b-hdwfoivadh] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Header */
.step-header[b-hdwfoivadh] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.video-status[b-hdwfoivadh] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Questions Container */
.questions-container[b-hdwfoivadh] {
    flex: 1;
    padding: 1.5rem;
}

.question-group[b-hdwfoivadh] {
    margin-bottom: 2rem;
}

.question-title[b-hdwfoivadh] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

/* Option Buttons */
.option-buttons[b-hdwfoivadh] {
    display: flex;
    gap: 1rem;
}

.btn-option[b-hdwfoivadh] {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    background: white;
    color: #495057;
    transition: all 0.2s ease;
}

.btn-option:hover[b-hdwfoivadh] {
    border-color: #1b6ec2;
    color: #1b6ec2;
}

.btn-option.selected[b-hdwfoivadh] {
    border-color: #1b6ec2;
    background: #1b6ec2;
    color: white;
}

/* Phone Input */
.phone-input-wrapper[b-hdwfoivadh] {
    position: relative;
}

.phone-input[b-hdwfoivadh] {
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    text-align: center;
    letter-spacing: 1px;
}

.phone-input:focus[b-hdwfoivadh] {
    border-color: #1b6ec2;
    box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
}

/* Phone Question Group - ensure button is visible above keyboard */
.phone-question-group[b-hdwfoivadh] {
    margin-bottom: 0;
}

/* Continue Section */
.continue-section[b-hdwfoivadh] {
    padding: 1rem 0;
    margin-top: 1rem;
    background: white;
}

.btn-continue[b-hdwfoivadh] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
}

.btn-continue:disabled[b-hdwfoivadh] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (min-width: 768px) {
    .collect-step2[b-hdwfoivadh] {
        max-width: 600px;
        margin: 0 auto;
    }

    .question-title[b-hdwfoivadh] {
        font-size: 1.25rem;
    }

    .btn-option[b-hdwfoivadh] {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
}
/* _content/AutoBodyCollectInfo/Pages/CollectStep3.cshtml.rz.scp.css */
/* Mobile-first styles for Collect Step 3 */

.collect-step3[b-org6uprm8k] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* Header */
.step-header[b-org6uprm8k] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.step-title[b-org6uprm8k] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-subtitle[b-org6uprm8k] {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Address Container */
.address-container[b-org6uprm8k] {
    padding: 1rem;
    background: white;
}

.address-input-wrapper[b-org6uprm8k] {
    position: relative;
}

.address-icon[b-org6uprm8k] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.address-input[b-org6uprm8k] {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
}

.address-input:focus[b-org6uprm8k] {
    border-color: #1b6ec2;
    box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
}

/* Map Container */
.map-container[b-org6uprm8k] {
    flex: 1;
    position: relative;
    min-height: 150px;
    max-height: 250px;
    background: #f8f9fa;
    overflow: hidden;
}

.map[b-org6uprm8k] {
    width: 100%;
    height: 100%;
}

.map-placeholder[b-org6uprm8k] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.btn-use-location[b-org6uprm8k] {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: 2px solid #1b6ec2;
    color: #1b6ec2;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-use-location:hover[b-org6uprm8k] {
    background: #1b6ec2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 110, 194, 0.3);
}

/* Selected Address */
.selected-address[b-org6uprm8k] {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #d4edda;
    border-top: 1px solid #c3e6cb;
    font-size: 0.95rem;
    color: #155724;
}

/* Continue Section */
.continue-section[b-org6uprm8k] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.btn-submit[b-org6uprm8k] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    width: 100%;
}

.btn-submit:disabled[b-org6uprm8k] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Google Places Autocomplete Dropdown Styling */
.pac-container[b-org6uprm8k] {
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.pac-item[b-org6uprm8k] {
    padding: 10px 15px;
    font-size: 0.95rem;
    cursor: pointer;
}

.pac-item:hover[b-org6uprm8k] {
    background: #f8f9fa;
}

.pac-item-selected[b-org6uprm8k] {
    background: #e9ecef;
}

/* Responsive */
@media (min-width: 768px) {
    .collect-step3[b-org6uprm8k] {
        max-width: 600px;
        margin: 0 auto;
    }

    .step-title[b-org6uprm8k] {
        font-size: 1.75rem;
    }

    .map-container[b-org6uprm8k] {
        max-height: 350px;
    }
}
/* _content/AutoBodyCollectInfo/Pages/Completed.cshtml.rz.scp.css */
/* Mobile-first styles for Completed page */

.completed-page[b-6g7pnp7q90] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Success Header */
.success-header[b-6g7pnp7q90] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.success-icon[b-6g7pnp7q90] {
    margin-bottom: 1rem;
}

.success-icon svg[b-6g7pnp7q90] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.success-title[b-6g7pnp7q90] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-subtitle[b-6g7pnp7q90] {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Summary Container */
.summary-container[b-6g7pnp7q90] {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
}

.summary-card[b-6g7pnp7q90] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.summary-title[b-6g7pnp7q90] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.summary-item[b-6g7pnp7q90] {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child[b-6g7pnp7q90] {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-icon[b-6g7pnp7q90] {
    width: 36px;
    height: 36px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #495057;
    flex-shrink: 0;
}

.summary-content[b-6g7pnp7q90] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-label[b-6g7pnp7q90] {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.summary-value[b-6g7pnp7q90] {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    word-break: break-word;
}

/* Reference Card */
.reference-card[b-6g7pnp7q90] {
    background: #1a1a2e;
    color: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.reference-label[b-6g7pnp7q90] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.reference-value[b-6g7pnp7q90] {
    display: block;
    font-size: 0.9rem;
    font-family: monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}

/* Message */
.message-container[b-6g7pnp7q90] {
    padding: 1.5rem;
    text-align: center;
}

.message-text[b-6g7pnp7q90] {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Action Container */
.action-container[b-6g7pnp7q90] {
    padding: 1rem 1.5rem 1.5rem;
}

.btn-home[b-6g7pnp7q90] {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
}

/* Responsive */
@media (min-width: 768px) {
    .completed-page[b-6g7pnp7q90] {
        max-width: 600px;
        margin: 0 auto;
    }

    .success-title[b-6g7pnp7q90] {
        font-size: 2.5rem;
    }

    .success-subtitle[b-6g7pnp7q90] {
        font-size: 1.25rem;
    }
}
/* _content/AutoBodyCollectInfo/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-9wqrncmtyk] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-9wqrncmtyk] {
  color: #0077cc;
}

.btn-primary[b-9wqrncmtyk] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-9wqrncmtyk], .nav-pills .show > .nav-link[b-9wqrncmtyk] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-9wqrncmtyk] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-9wqrncmtyk] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-9wqrncmtyk] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-9wqrncmtyk] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-9wqrncmtyk] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
