/* _content/CaptureToQuote/Pages/Collect.cshtml.rz.scp.css */
/* Mobile-first styles for Collect page */

/* Welcome Screen */
.collect-welcome[b-o8ingrfgof] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.image-placeholder[b-o8ingrfgof] {
    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-o8ingrfgof] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Welcome message placeholder when no custom image */
.welcome-message-placeholder[b-o8ingrfgof] {
    text-align: center;
    padding: 2rem;
    max-width: 320px;
}

.welcome-message-placeholder h2[b-o8ingrfgof] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-message-placeholder p[b-o8ingrfgof] {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.placeholder-content[b-o8ingrfgof] {
    text-align: center;
    padding: 2rem;
}

.placeholder-content svg[b-o8ingrfgof] {
    opacity: 0.9;
}

.placeholder-content p[b-o8ingrfgof] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.welcome-content[b-o8ingrfgof] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.welcome-title[b-o8ingrfgof] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.welcome-subtitle[b-o8ingrfgof] {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 320px;
}

.btn-start-recording[b-o8ingrfgof] {
    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-o8ingrfgof] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Recording Overlay */
.recording-overlay[b-o8ingrfgof] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.camera-preview[b-o8ingrfgof],
.recorded-video[b-o8ingrfgof] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.recording-timer[b-o8ingrfgof] {
    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-o8ingrfgof] {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-b-o8ingrfgof 1s infinite;
}

@keyframes pulse-b-o8ingrfgof {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Record Hint - Arrow pointing to record button */
.record-hint[b-o8ingrfgof] {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 15;
    animation: hintBounce-b-o8ingrfgof 1.5s ease-in-out infinite;
}

.record-hint-text[b-o8ingrfgof] {
    background: white;
    color: #1a1a2e;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    margin-bottom: 8px;
}

.record-hint-arrow[b-o8ingrfgof] {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes hintBounce-b-o8ingrfgof {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.recording-controls[b-o8ingrfgof] {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.btn-control[b-o8ingrfgof] {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    min-width: 80px;
}

.btn-redo[b-o8ingrfgof] {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-redo:hover[b-o8ingrfgof] {
    background: #c82333;
    color: white;
}

.btn-done[b-o8ingrfgof] {
    background: #28a745;
    color: white;
    border: none;
}

.btn-done:hover[b-o8ingrfgof] {
    background: #218838;
    color: white;
}

/* Record Button */
.btn-record[b-o8ingrfgof] {
    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-o8ingrfgof] {
    transform: scale(1.05);
}

.record-icon[b-o8ingrfgof] {
    width: 60px;
    height: 60px;
    background: #ff4444;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Stop Button */
.btn-stop[b-o8ingrfgof] {
    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-o8ingrfgof] {
    transform: scale(1.05);
}

.stop-icon[b-o8ingrfgof] {
    width: 32px;
    height: 32px;
    background: #ff4444;
    border-radius: 4px;
}

/* Play/Pause Button */
.btn-play-pause[b-o8ingrfgof] {
    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-o8ingrfgof] {
    transform: scale(1.05);
}

.play-icon[b-o8ingrfgof] {
    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-o8ingrfgof] {
    display: flex;
    gap: 8px;
}

.pause-icon[b-o8ingrfgof]::before,
.pause-icon[b-o8ingrfgof]::after {
    content: '';
    width: 10px;
    height: 36px;
    background: #1b6ec2;
    border-radius: 2px;
}

/* Close Recording Button */
.btn-close-recording[b-o8ingrfgof] {
    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-o8ingrfgof] {
    background: rgba(0, 0, 0, 0.7);
}

/* Video List Screen */
.collect-video-list[b-o8ingrfgof] {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin: -1rem;
}

.video-list-container[b-o8ingrfgof] {
    flex: 1;
    padding: 1rem;
}

.video-thumbnails[b-o8ingrfgof] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* New Video Thumbnail Design */
.video-thumbnail-item[b-o8ingrfgof] {
    position: relative;
    border-radius: 12px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.video-thumbnail-wrapper[b-o8ingrfgof] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-thumbnail[b-o8ingrfgof] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Header with upload status */
.video-header[b-o8ingrfgof] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space between status and name */
    z-index: 2;
}

.video-status-container[b-o8ingrfgof] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 70%;
}

.video-name[b-o8ingrfgof] {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
}

.video-progress-bar[b-o8ingrfgof] {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    max-width: 100px;
}

.video-progress-fill[b-o8ingrfgof] {
    height: 100%;
    background: #28a745;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.video-progress-text[b-o8ingrfgof] {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    min-width: 35px;
}

.video-upload-complete[b-o8ingrfgof] {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
}

.video-upload-error[b-o8ingrfgof] {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Play button overlay in center */
.video-play-overlay[b-o8ingrfgof] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.play-button-bg[b-o8ingrfgof] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-thumbnail-wrapper:hover .play-button-bg[b-o8ingrfgof] {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.play-button-bg svg[b-o8ingrfgof] {
    color: white;
    margin-left: 3px;
}

/* Duration badge in bottom right */
.video-duration-badge[b-o8ingrfgof] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

/* Remove button - below the thumbnail */
.btn-remove-video[b-o8ingrfgof] {
    margin-top: 8px;
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.btn-remove-video:hover[b-o8ingrfgof] {
    background: rgba(220, 53, 69, 0.1);
    transform: none;
}

.btn-remove-video svg[b-o8ingrfgof] {
    width: 16px;
    height: 16px;
}

.btn-add-video[b-o8ingrfgof] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    border-radius: 12px;
    border-style: dashed;
    border-width: 2px;
    font-weight: 500;
}

/* Recording Tips Section */
.recording-tips[b-o8ingrfgof] {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.recording-tips-title[b-o8ingrfgof] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recording-tips-list[b-o8ingrfgof] {
    margin: 0;
    padding-left: 1.25rem;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
}

.recording-tips-list li[b-o8ingrfgof] {
    margin-bottom: 0.25rem;
}

/* Continue Section */
.continue-section[b-o8ingrfgof] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.btn-continue[b-o8ingrfgof] {
    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-o8ingrfgof] {
    opacity: 0.7;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .collect-welcome[b-o8ingrfgof] {
        margin: 0 auto;
        max-width: 600px;
    }

    .welcome-title[b-o8ingrfgof] {
        font-size: 2.25rem;
    }

    .welcome-subtitle[b-o8ingrfgof] {
        font-size: 1.1rem;
        max-width: 400px;
    }

    .collect-video-list[b-o8ingrfgof] {
        max-width: 800px;
        /* Increased max-width to accommodate side-by-side better */
        margin: 0 auto;
    }

    .video-thumbnails[b-o8ingrfgof] {
        grid-template-columns: 1fr 1fr;
        /* Two columns on larger screens */
    }

    .video-thumbnail-wrapper[b-o8ingrfgof] {
        max-height: 300px;
    }
}
/* _content/CaptureToQuote/Pages/CollectStep2.cshtml.rz.scp.css */
/* Mobile-first styles for Collect Step 2 */

.collect-step2[b-i49gr67bn5] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Header */
.step-header[b-i49gr67bn5] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.video-status[b-i49gr67bn5] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Questions Container */
.questions-container[b-i49gr67bn5] {
    flex: 1;
    padding: 1.5rem;
}

.question-group[b-i49gr67bn5] {
    margin-bottom: 2rem;
}

.question-title[b-i49gr67bn5] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

/* Option Buttons */
.option-buttons[b-i49gr67bn5] {
    display: flex;
    gap: 1rem;
}

.btn-option[b-i49gr67bn5] {
    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-i49gr67bn5] {
    border-color: #1b6ec2;
    color: #1b6ec2;
}

.btn-option.selected[b-i49gr67bn5] {
    border-color: #1b6ec2;
    background: #1b6ec2;
    color: white;
}

/* Name Inputs */
.name-inputs-wrapper[b-i49gr67bn5] {
    position: relative;
}

.name-input-row[b-i49gr67bn5] {
    display: flex;
    gap: 1rem;
}

.name-input[b-i49gr67bn5] {
    flex: 1;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
}

.name-input:focus[b-i49gr67bn5] {
    border-color: #1b6ec2;
    box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
}

/* Phone Input */
.phone-input-wrapper[b-i49gr67bn5] {
    position: relative;
}

.phone-input[b-i49gr67bn5] {
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    text-align: center;
    letter-spacing: 1px;
}

.phone-input:focus[b-i49gr67bn5] {
    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-i49gr67bn5] {
    margin-bottom: 0;
}

/* Continue Section */
.continue-section[b-i49gr67bn5] {
    padding: 1rem 0;
    margin-top: 1rem;
    background: white;
}

.btn-continue[b-i49gr67bn5] {
    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.btn-disabled[b-i49gr67bn5] {
    opacity: 0.6;
}

/* Validation Error Animation */
@keyframes flashRed-b-i49gr67bn5 {
    0% {
        background-color: transparent;
    }
    25% {
        background-color: rgba(220, 53, 69, 0.15);
    }
    50% {
        background-color: transparent;
    }
    75% {
        background-color: rgba(220, 53, 69, 0.15);
    }
    100% {
        background-color: transparent;
    }
}

.question-group.validation-error[b-i49gr67bn5] {
    animation: flashRed-b-i49gr67bn5 1s ease-in-out;
    border-radius: 12px;
    position: relative;
}

.question-group.validation-error .question-title[b-i49gr67bn5] {
    color: #dc3545;
}

.question-group.validation-error .btn-option[b-i49gr67bn5] {
    border-color: #dc3545;
}

.question-group.validation-error .name-input[b-i49gr67bn5],
.question-group.validation-error .phone-input[b-i49gr67bn5] {
    border-color: #dc3545;
}

/* Responsive */
@media (min-width: 768px) {
    .collect-step2[b-i49gr67bn5] {
        max-width: 600px;
        margin: 0 auto;
    }

    .question-title[b-i49gr67bn5] {
        font-size: 1.25rem;
    }

    .btn-option[b-i49gr67bn5] {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
}
/* _content/CaptureToQuote/Pages/CollectStep3.cshtml.rz.scp.css */
/* Mobile-first styles for Collect Step 3 */

.collect-step3[b-rvxc5orpfu] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* Header */
.step-header[b-rvxc5orpfu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.step-title[b-rvxc5orpfu] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-subtitle[b-rvxc5orpfu] {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Address Container */
.address-container[b-rvxc5orpfu] {
    padding: 1rem;
    background: white;
}

.address-input-wrapper[b-rvxc5orpfu] {
    position: relative;
}

.address-icon[b-rvxc5orpfu] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.address-input[b-rvxc5orpfu] {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
}

.address-input:focus[b-rvxc5orpfu] {
    border-color: #1b6ec2;
    box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
}

/* Map Container */
.map-container[b-rvxc5orpfu] {
    flex: 1;
    position: relative;
    min-height: 150px;
    max-height: 250px;
    background: #f8f9fa;
    overflow: hidden;
}

.map[b-rvxc5orpfu] {
    width: 100%;
    height: 100%;
}

.map-placeholder[b-rvxc5orpfu] {
    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-rvxc5orpfu] {
    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-rvxc5orpfu] {
    background: #1b6ec2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 110, 194, 0.3);
}

/* Selected Address */
.selected-address[b-rvxc5orpfu] {
    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-rvxc5orpfu] {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e5e5;
}

.btn-submit[b-rvxc5orpfu] {
    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-rvxc5orpfu] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Google Places Autocomplete Dropdown Styling */
.pac-container[b-rvxc5orpfu] {
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.pac-item[b-rvxc5orpfu] {
    padding: 10px 15px;
    font-size: 0.95rem;
    cursor: pointer;
}

.pac-item:hover[b-rvxc5orpfu] {
    background: #f8f9fa;
}

.pac-item-selected[b-rvxc5orpfu] {
    background: #e9ecef;
}

/* Responsive */
@media (min-width: 768px) {
    .collect-step3[b-rvxc5orpfu] {
        max-width: 600px;
        margin: 0 auto;
    }

    .step-title[b-rvxc5orpfu] {
        font-size: 1.75rem;
    }

    .map-container[b-rvxc5orpfu] {
        max-height: 350px;
    }
}
/* _content/CaptureToQuote/Pages/CollectStep4.cshtml.rz.scp.css */
/* Step 4 - Appointment Booking Styles */
.step4-container[b-9e0pj3cqhz] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.step4-header[b-9e0pj3cqhz] {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon[b-9e0pj3cqhz] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step4-title[b-9e0pj3cqhz] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.step4-subtitle[b-9e0pj3cqhz] {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Email Section */
.email-section[b-9e0pj3cqhz] {
    margin-bottom: 20px;
}

.email-card[b-9e0pj3cqhz] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.email-icon[b-9e0pj3cqhz] {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.email-title[b-9e0pj3cqhz] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.email-subtitle[b-9e0pj3cqhz] {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.email-input-group[b-9e0pj3cqhz] {
    margin-bottom: 20px;
}

.email-input[b-9e0pj3cqhz] {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.email-input:focus[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.email-input.error[b-9e0pj3cqhz] {
    border-color: #ef4444;
}

.email-error[b-9e0pj3cqhz] {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 8px;
}

.btn-email-submit[b-9e0pj3cqhz] {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    color: white;
    transition: all 0.2s ease;
}

.btn-email-submit:hover[b-9e0pj3cqhz] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-email-submit:disabled[b-9e0pj3cqhz] {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.btn-skip-email[b-9e0pj3cqhz] {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-skip-email:hover[b-9e0pj3cqhz] {
    color: #374151;
}

/* Email Sent Section */
.email-sent-section[b-9e0pj3cqhz] {
    margin-bottom: 20px;
    animation: slideIn-b-9e0pj3cqhz 0.3s ease;
}

.email-sent-card[b-9e0pj3cqhz] {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.email-sent-icon[b-9e0pj3cqhz] {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.email-sent-title[b-9e0pj3cqhz] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 8px;
}

.email-sent-message[b-9e0pj3cqhz] {
    font-size: 0.95rem;
    color: #047857;
    margin-bottom: 4px;
}

.email-sent-submessage[b-9e0pj3cqhz] {
    font-size: 0.875rem;
    color: #059669;
    margin: 0;
}

/* Account Link Section */
.account-link-section[b-9e0pj3cqhz] {
    margin-bottom: 10px;
}

.account-link-card[b-9e0pj3cqhz] {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #7dd3fc;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-link-icon[b-9e0pj3cqhz] {
    width: 44px;
    height: 44px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.account-link-content[b-9e0pj3cqhz] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.account-link-text[b-9e0pj3cqhz] {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0c4a6e;
}

.account-link-content .btn[b-9e0pj3cqhz] {
    font-weight: 600;
}

/* Content Section */
.step4-content[b-9e0pj3cqhz] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Distance Card */
.distance-card[b-9e0pj3cqhz] {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.distance-icon[b-9e0pj3cqhz] {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.distance-text[b-9e0pj3cqhz] {
    font-size: 0.95rem;
    color: #0c4a6e;
    line-height: 1.5;
}

.distance-text strong[b-9e0pj3cqhz] {
    font-weight: 600;
}

/* Towing Card */
.towing-card[b-9e0pj3cqhz] {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.towing-card.eligible[b-9e0pj3cqhz] {
    background: #d1fae5;
    border-color: #6ee7b7;
}

.towing-icon[b-9e0pj3cqhz] {
    width: 48px;
    height: 48px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.towing-card.eligible .towing-icon[b-9e0pj3cqhz] {
    background: #10b981;
}

.towing-text[b-9e0pj3cqhz] {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.5;
}

.towing-card.eligible .towing-text[b-9e0pj3cqhz] {
    color: #065f46;
}

/* Accuracy Message */
.accuracy-message[b-9e0pj3cqhz] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #4b5563;
}

.accuracy-message svg[b-9e0pj3cqhz] {
    flex-shrink: 0;
    color: #9ca3af;
    margin-top: 1px;
}

/* Appointment Section */
.appointment-section[b-9e0pj3cqhz] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-title[b-9e0pj3cqhz] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

/* Choice Buttons (Yes/No) */
.choice-buttons[b-9e0pj3cqhz] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-choice[b-9e0pj3cqhz] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-yes[b-9e0pj3cqhz] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #059669;
}

.btn-yes:hover[b-9e0pj3cqhz] {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-no[b-9e0pj3cqhz] {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-no:hover[b-9e0pj3cqhz] {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Booking Steps */
.booking-step[b-9e0pj3cqhz] {
    animation: slideIn-b-9e0pj3cqhz 0.3s ease;
}

@keyframes slideIn-b-9e0pj3cqhz {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-step-title[b-9e0pj3cqhz] {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    text-align: center;
}

/* Day Buttons */
.day-buttons[b-9e0pj3cqhz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.btn-day[b-9e0pj3cqhz] {
    padding: 12px 8px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-day:hover:not(:disabled)[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #eff6ff;
}

.btn-day.selected[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.btn-day:disabled[b-9e0pj3cqhz] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

.btn-day .day-name[b-9e0pj3cqhz] {
    display: block;
    font-weight: 600;
}

.btn-day .day-status[b-9e0pj3cqhz] {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px;
}

.btn-day.selected .day-status[b-9e0pj3cqhz] {
    color: rgba(255, 255, 255, 0.8);
}

/* Time Buttons */
.time-buttons[b-9e0pj3cqhz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.btn-time[b-9e0pj3cqhz] {
    padding: 14px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.btn-time:hover[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #eff6ff;
}

.btn-time.selected[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

/* Date Options */
.date-options[b-9e0pj3cqhz] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-date[b-9e0pj3cqhz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
    text-align: left;
}

.btn-date:hover[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #eff6ff;
}

.btn-date.selected[b-9e0pj3cqhz] {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.date-info[b-9e0pj3cqhz] {
    display: flex;
    flex-direction: column;
}

.date-main[b-9e0pj3cqhz] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.btn-date.selected .date-main[b-9e0pj3cqhz] {
    color: white;
}

.date-sub[b-9e0pj3cqhz] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 2px;
}

.btn-date.selected .date-sub[b-9e0pj3cqhz] {
    color: rgba(255, 255, 255, 0.8);
}

.date-when[b-9e0pj3cqhz] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #10b981;
    background: #d1fae5;
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-date.selected .date-when[b-9e0pj3cqhz] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Booking Confirmation */
.booking-confirmation[b-9e0pj3cqhz] {
    text-align: center;
    animation: scaleIn-b-9e0pj3cqhz 0.4s ease;
}

@keyframes scaleIn-b-9e0pj3cqhz {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-icon[b-9e0pj3cqhz] {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.confirmation-title[b-9e0pj3cqhz] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.confirmation-details[b-9e0pj3cqhz] {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 8px;
}

.confirmation-address[b-9e0pj3cqhz] {
    font-size: 0.9rem;
    color: #6b7280;
}

.confirmation-address strong[b-9e0pj3cqhz] {
    color: #374151;
}

/* View My Account Button */
.btn-view-account[b-9e0pj3cqhz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

/* Back Button */
.btn-back[b-9e0pj3cqhz] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 16px;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-back:hover[b-9e0pj3cqhz] {
    color: #374151;
}

/* Continue Section */
.continue-section[b-9e0pj3cqhz] {
    margin-top: 30px;
    text-align: center;
}

.btn-continue[b-9e0pj3cqhz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    min-width: 200px;
    transition: all 0.2s ease;
}

.btn-continue:hover[b-9e0pj3cqhz] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .step4-container[b-9e0pj3cqhz] {
        padding: 16px;
    }

    .step4-title[b-9e0pj3cqhz] {
        font-size: 1.5rem;
    }

    .appointment-section[b-9e0pj3cqhz] {
        padding: 20px 16px;
    }

    .day-buttons[b-9e0pj3cqhz] {
        grid-template-columns: repeat(4, 1fr);
    }

    .time-buttons[b-9e0pj3cqhz] {
        grid-template-columns: repeat(3, 1fr);
    }

    .btn-date[b-9e0pj3cqhz] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .date-when[b-9e0pj3cqhz] {
        align-self: flex-start;
    }
}
/* _content/CaptureToQuote/Pages/Completed.cshtml.rz.scp.css */
/* Mobile-first styles for Completed page */

.completed-page[b-9dldpvh0mf] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Success Header */
.success-header[b-9dldpvh0mf] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.success-icon[b-9dldpvh0mf] {
    margin-bottom: 1rem;
}

.success-icon svg[b-9dldpvh0mf] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.success-title[b-9dldpvh0mf] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-subtitle[b-9dldpvh0mf] {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Summary Container */
.summary-container[b-9dldpvh0mf] {
    flex: 1;
    padding: 1.5rem;
    background: #f8f9fa;
}

.summary-card[b-9dldpvh0mf] {
    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-9dldpvh0mf] {
    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-9dldpvh0mf] {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child[b-9dldpvh0mf] {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-icon[b-9dldpvh0mf] {
    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-9dldpvh0mf] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-label[b-9dldpvh0mf] {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.summary-value[b-9dldpvh0mf] {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    word-break: break-word;
}

/* My Account Button */
.btn-myaccount[b-9dldpvh0mf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Reference Card */
.reference-card[b-9dldpvh0mf] {
    background: #1a1a2e;
    color: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.reference-label[b-9dldpvh0mf] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.reference-value[b-9dldpvh0mf] {
    display: block;
    font-size: 0.9rem;
    font-family: monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}

/* Message */
.message-container[b-9dldpvh0mf] {
    padding: 1.5rem;
    text-align: center;
}

.message-text[b-9dldpvh0mf] {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Action Container */
.action-container[b-9dldpvh0mf] {
    padding: 1rem 1.5rem 1.5rem;
}

.btn-home[b-9dldpvh0mf] {
    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-9dldpvh0mf] {
        max-width: 600px;
        margin: 0 auto;
    }

    .success-title[b-9dldpvh0mf] {
        font-size: 2.5rem;
    }

    .success-subtitle[b-9dldpvh0mf] {
        font-size: 1.25rem;
    }
}
/* _content/CaptureToQuote/Pages/Live/Walkthrough.cshtml.rz.scp.css */
/* Live Walkthrough Page Styles */

/* Welcome Screen */
.walkthrough-welcome[b-8nmmqdo3i3] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    text-align: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.welcome-header[b-8nmmqdo3i3] {
    margin-bottom: 2rem;
}

.company-logo[b-8nmmqdo3i3] {
    max-width: 150px;
    max-height: 80px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.welcome-title[b-8nmmqdo3i3] {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.welcome-subtitle[b-8nmmqdo3i3] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin: 0 auto;
}

.welcome-info[b-8nmmqdo3i3] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
}

.info-item[b-8nmmqdo3i3] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    padding: 0.75rem 0;
    text-align: left;
}

.info-item svg[b-8nmmqdo3i3] {
    flex-shrink: 0;
    opacity: 0.9;
}

.info-item span[b-8nmmqdo3i3] {
    font-size: 0.95rem;
}

.recording-notice[b-8nmmqdo3i3] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem !important;
}

.btn-start[b-8nmmqdo3i3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.btn-start:hover[b-8nmmqdo3i3] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.permission-note[b-8nmmqdo3i3] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

/* Permission Screen */
.walkthrough-permission[b-8nmmqdo3i3] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
}

.permission-content[b-8nmmqdo3i3] {
    text-align: center;
    color: white;
}

.permission-icon[b-8nmmqdo3i3] {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.permission-content h2[b-8nmmqdo3i3] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.permission-content p[b-8nmmqdo3i3] {
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    margin: 0 auto;
}

/* Waiting Screen */
.walkthrough-waiting[b-8nmmqdo3i3] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
}

.waiting-content[b-8nmmqdo3i3] {
    text-align: center;
    color: white;
    width: 100%;
    max-width: 400px;
}

.camera-preview-container[b-8nmmqdo3i3] {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

#localPreview[b-8nmmqdo3i3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-label[b-8nmmqdo3i3] {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.waiting-message h2[b-8nmmqdo3i3] {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
}

.waiting-message p[b-8nmmqdo3i3] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Active Session Screen */
.walkthrough-session[b-8nmmqdo3i3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

#localVideo[b-8nmmqdo3i3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connection-status[b-8nmmqdo3i3] {
    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: 0.9rem;
    z-index: 10;
}

.status-dot[b-8nmmqdo3i3] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.status-dot.connecting[b-8nmmqdo3i3] {
    background: #f59e0b;
    animation: pulse-b-8nmmqdo3i3 1s infinite;
}

.status-dot.disconnected[b-8nmmqdo3i3] {
    background: #ef4444;
}

.recording-indicator[b-8nmmqdo3i3] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    z-index: 10;
}

.recording-dot[b-8nmmqdo3i3] {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse-b-8nmmqdo3i3 1s infinite;
}

@keyframes pulse-b-8nmmqdo3i3 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.session-timer[b-8nmmqdo3i3] {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: monospace;
    z-index: 10;
}

.session-controls[b-8nmmqdo3i3] {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.btn-control[b-8nmmqdo3i3] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.btn-control:hover[b-8nmmqdo3i3] {
    transform: scale(1.1);
    background: white;
}

.btn-control:active[b-8nmmqdo3i3] {
    transform: scale(0.95);
}

.btn-end[b-8nmmqdo3i3] {
    background: #ef4444;
    color: white;
}

.btn-end:hover[b-8nmmqdo3i3] {
    background: #dc2626;
    color: white;
}

.btn-control.muted[b-8nmmqdo3i3] {
    background: #fef2f2;
    color: #ef4444;
}

/* Ended Screen */
.walkthrough-ended[b-8nmmqdo3i3] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
}

.ended-content[b-8nmmqdo3i3] {
    text-align: center;
    color: white;
    max-width: 400px;
}

.ended-icon[b-8nmmqdo3i3] {
    color: #10b981;
    margin-bottom: 1.5rem;
}

.ended-content h2[b-8nmmqdo3i3] {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.ended-content p[b-8nmmqdo3i3] {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.session-duration[b-8nmmqdo3i3] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.upload-progress[b-8nmmqdo3i3] {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.upload-progress .progress[b-8nmmqdo3i3] {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.upload-progress .progress-bar[b-8nmmqdo3i3] {
    background: #10b981;
}

.upload-text[b-8nmmqdo3i3] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Enhanced Upload Section */
.upload-section[b-8nmmqdo3i3] {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(233, 69, 96, 0.5);
}

.upload-warning[b-8nmmqdo3i3] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e94560;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.upload-message[b-8nmmqdo3i3] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.upload-progress-container[b-8nmmqdo3i3] {
    margin-bottom: 1rem;
}

.upload-progress-container .progress[b-8nmmqdo3i3] {
    background: rgba(255, 255, 255, 0.2);
}

.upload-progress-container .progress-bar[b-8nmmqdo3i3] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-status[b-8nmmqdo3i3] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .walkthrough-welcome[b-8nmmqdo3i3] {
        padding: 1.5rem 1rem;
    }

    .welcome-title[b-8nmmqdo3i3] {
        font-size: 1.5rem;
    }

    .welcome-info[b-8nmmqdo3i3] {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .btn-start[b-8nmmqdo3i3] {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .session-controls[b-8nmmqdo3i3] {
        bottom: 30px;
        gap: 15px;
    }

    .btn-control[b-8nmmqdo3i3] {
        width: 55px;
        height: 55px;
    }
}

/* Safe area for iOS notch */
@supports (padding-top: env(safe-area-inset-top)) {
    .walkthrough-session[b-8nmmqdo3i3] {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .connection-status[b-8nmmqdo3i3] {
        top: calc(20px + env(safe-area-inset-top));
    }

    .session-controls[b-8nmmqdo3i3] {
        bottom: calc(40px + env(safe-area-inset-bottom));
    }
}
/* _content/CaptureToQuote/Pages/MyAccount.cshtml.rz.scp.css */
/* Mobile-first styles for MyAccount page */

.myaccount-page[b-e11m1b9neh] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: #f8f9fa;
}

/* Lookup Screen Styles */
.lookup-header[b-e11m1b9neh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.lookup-icon[b-e11m1b9neh] {
    margin-bottom: 1rem;
    opacity: 0.95;
}

.lookup-title[b-e11m1b9neh] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lookup-subtitle[b-e11m1b9neh] {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.lookup-container[b-e11m1b9neh] {
    padding: 1.5rem;
}

.lookup-card[b-e11m1b9neh] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.lookup-card-title[b-e11m1b9neh] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.lookup-card-desc[b-e11m1b9neh] {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.lookup-divider[b-e11m1b9neh] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.lookup-divider span[b-e11m1b9neh] {
    background: #f8f9fa;
    padding: 0 1rem;
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Tab Navigation */
.tab-navigation[b-e11m1b9neh] {
    display: flex;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tab-btn[b-e11m1b9neh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover[b-e11m1b9neh] {
    color: #667eea;
}

.tab-btn.active[b-e11m1b9neh] {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-btn svg[b-e11m1b9neh] {
    transition: transform 0.2s ease;
}

.tab-btn.active svg[b-e11m1b9neh] {
    transform: scale(1.1);
}

/* Tab Content */
.tab-content[b-e11m1b9neh] {
    flex: 1;
}

.tab-pane[b-e11m1b9neh] {
    display: none;
}

.tab-pane.active[b-e11m1b9neh] {
    display: block;
}

.content-container[b-e11m1b9neh] {
    padding: 1rem;
}

/* Status Card */
.status-card[b-e11m1b9neh] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.status-header[b-e11m1b9neh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-label[b-e11m1b9neh] {
    font-size: 0.9rem;
    color: #666;
}

.status-badge[b-e11m1b9neh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Status Timeline */
.status-timeline[b-e11m1b9neh] {
    position: relative;
    padding-left: 24px;
}

.status-timeline[b-e11m1b9neh]::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e5e5e5;
}

.timeline-item[b-e11m1b9neh] {
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.timeline-dot[b-e11m1b9neh] {
    position: absolute;
    left: -24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e5e5e5;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #e5e5e5;
}

.timeline-item.completed .timeline-dot[b-e11m1b9neh] {
    background: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}

.timeline-item.active .timeline-dot[b-e11m1b9neh] {
    background: #667eea;
    box-shadow: 0 0 0 2px #667eea;
    animation: pulse-dot-b-e11m1b9neh 2s infinite;
}

@keyframes pulse-dot-b-e11m1b9neh {
    0%, 100% {
        box-shadow: 0 0 0 2px #667eea;
    }
    50% {
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3);
    }
}

.timeline-label[b-e11m1b9neh] {
    font-size: 0.9rem;
    color: #999;
}

.timeline-item.completed .timeline-label[b-e11m1b9neh],
.timeline-item.active .timeline-label[b-e11m1b9neh] {
    color: #1a1a2e;
    font-weight: 500;
}

.timeline-link[b-e11m1b9neh] {
    display: block;
    font-size: 0.8rem;
    color: #667eea;
    text-decoration: none;
    margin-top: 4px;
    margin-left: 24px;
    font-weight: 500;
}

.timeline-link:hover[b-e11m1b9neh] {
    color: #5a6fd6;
    text-decoration: underline;
}

/* Reference Card */
.reference-card[b-e11m1b9neh] {
    background: #1a1a2e;
    color: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.reference-label[b-e11m1b9neh] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.reference-value[b-e11m1b9neh] {
    display: block;
    font-size: 0.85rem;
    font-family: monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}

/* Info Card */
.info-card[b-e11m1b9neh] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.card-title[b-e11m1b9neh] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.info-item[b-e11m1b9neh] {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child[b-e11m1b9neh] {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon[b-e11m1b9neh] {
    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;
}

.info-content[b-e11m1b9neh] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-label[b-e11m1b9neh] {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.info-value[b-e11m1b9neh] {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    word-break: break-word;
}

/* Shop Card */
.shop-card[b-e11m1b9neh] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.shop-logo-container[b-e11m1b9neh] {
    margin-bottom: 1rem;
}

.shop-logo[b-e11m1b9neh] {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
}

.shop-name[b-e11m1b9neh] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.shop-contacts[b-e11m1b9neh] {
    text-align: left;
    margin-bottom: 1.5rem;
}

.shop-contact-item[b-e11m1b9neh] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    text-decoration: none;
}

.shop-contact-item:last-child[b-e11m1b9neh] {
    border-bottom: none;
}

.shop-contact-link[b-e11m1b9neh] {
    color: #0d6efd;
}

.shop-contact-link:hover[b-e11m1b9neh] {
    color: #0a58ca;
}

.shop-contact-icon[b-e11m1b9neh] {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
}

.shop-address[b-e11m1b9neh] {
    flex-wrap: wrap;
}

.shop-address span[b-e11m1b9neh] {
    flex: 1;
    min-width: 200px;
}

.btn-call[b-e11m1b9neh] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.no-shop-info[b-e11m1b9neh] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Appointment Card */
.appointment-card[b-e11m1b9neh] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.appointment-card.no-appointment[b-e11m1b9neh] {
    border-left-color: #9ca3af;
}

.appointment-header[b-e11m1b9neh] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.appointment-icon[b-e11m1b9neh] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.appointment-icon.empty[b-e11m1b9neh] {
    background: #e5e7eb;
    color: #9ca3af;
}

.appointment-title[b-e11m1b9neh] {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.appointment-status-badge[b-e11m1b9neh] {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-status-badge.pending[b-e11m1b9neh] {
    background: #fef3c7;
    color: #92400e;
}

.appointment-status-badge.confirmed[b-e11m1b9neh] {
    background: #d1fae5;
    color: #065f46;
}

.appointment-details[b-e11m1b9neh] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.appointment-datetime[b-e11m1b9neh] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.appointment-date[b-e11m1b9neh] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.appointment-time[b-e11m1b9neh] {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 500;
}

.appointment-location[b-e11m1b9neh] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.appointment-location svg[b-e11m1b9neh] {
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-change-appointment[b-e11m1b9neh],
.btn-book-appointment[b-e11m1b9neh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 10px;
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-change-appointment:hover[b-e11m1b9neh],
.btn-book-appointment:hover[b-e11m1b9neh] {
    background: #667eea;
    color: white;
}

.btn-book-appointment[b-e11m1b9neh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-book-appointment:hover[b-e11m1b9neh] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.no-appointment-text[b-e11m1b9neh] {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
}

/* Reschedule Section */
.reschedule-section[b-e11m1b9neh] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.reschedule-header[b-e11m1b9neh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reschedule-header h4[b-e11m1b9neh] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.btn-cancel-reschedule[b-e11m1b9neh] {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-cancel-reschedule:hover[b-e11m1b9neh] {
    background: #e5e7eb;
    color: #374151;
}

.reschedule-step[b-e11m1b9neh] {
    margin-bottom: 1rem;
}

.step-label[b-e11m1b9neh] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Day, Time, and Date Buttons (reused from collect-step4) */
.appointment-card .day-buttons[b-e11m1b9neh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 8px;
}

.appointment-card .btn-day[b-e11m1b9neh] {
    padding: 10px 6px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.appointment-card .btn-day:hover:not(:disabled)[b-e11m1b9neh] {
    border-color: #667eea;
    background: #f0f4ff;
}

.appointment-card .btn-day.selected[b-e11m1b9neh] {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.appointment-card .btn-day:disabled[b-e11m1b9neh] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

.appointment-card .btn-day .day-name[b-e11m1b9neh] {
    display: block;
    font-weight: 600;
}

.appointment-card .btn-day .day-status[b-e11m1b9neh] {
    display: block;
    font-size: 0.65rem;
    color: #9ca3af;
    margin-top: 2px;
}

.appointment-card .btn-day.selected .day-status[b-e11m1b9neh] {
    color: rgba(255, 255, 255, 0.8);
}

.appointment-card .time-buttons[b-e11m1b9neh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
}

.appointment-card .btn-time[b-e11m1b9neh] {
    padding: 12px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    cursor: pointer;
}

.appointment-card .btn-time:hover[b-e11m1b9neh] {
    border-color: #667eea;
    background: #f0f4ff;
}

.appointment-card .btn-time.selected[b-e11m1b9neh] {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.appointment-card .date-options[b-e11m1b9neh] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.appointment-card .btn-date[b-e11m1b9neh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    transition: all 0.2s ease;
    text-align: left;
    cursor: pointer;
}

.appointment-card .btn-date:hover[b-e11m1b9neh] {
    border-color: #667eea;
    background: #f0f4ff;
}

.appointment-card .btn-date.selected[b-e11m1b9neh] {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.appointment-card .date-info[b-e11m1b9neh] {
    display: flex;
    flex-direction: column;
}

.appointment-card .date-main[b-e11m1b9neh] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.appointment-card .btn-date.selected .date-main[b-e11m1b9neh] {
    color: white;
}

.appointment-card .date-sub[b-e11m1b9neh] {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 2px;
}

.appointment-card .btn-date.selected .date-sub[b-e11m1b9neh] {
    color: rgba(255, 255, 255, 0.8);
}

.appointment-card .date-when[b-e11m1b9neh] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #10b981;
    background: #d1fae5;
    padding: 4px 8px;
    border-radius: 20px;
}

.appointment-card .btn-date.selected .date-when[b-e11m1b9neh] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.appointment-card .btn-back[b-e11m1b9neh] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 12px;
    padding: 6px 0;
    background: none;
    border: none;
    cursor: pointer;
}

.appointment-card .btn-back:hover[b-e11m1b9neh] {
    color: #374151;
}

/* Responsive */
@media (min-width: 768px) {
    .myaccount-page[b-e11m1b9neh] {
        max-width: 600px;
        margin: 0 auto;
    }

    .lookup-title[b-e11m1b9neh] {
        font-size: 2rem;
    }

    .tab-btn[b-e11m1b9neh] {
        flex-direction: row;
        gap: 8px;
        font-size: 0.9rem;
    }
}
/* _content/CaptureToQuote/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-837anen981] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-837anen981] {
  color: #0077cc;
}

.btn-primary[b-837anen981] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-837anen981], .nav-pills .show > .nav-link[b-837anen981] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-837anen981] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-837anen981] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-837anen981] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-837anen981] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-837anen981] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
