/* Mobile Checklist - Common Styles */

/* Decision Rows and Options */
.mobile-decision-row {
    display: grid;
    gap: 10px;
}

.mobile-decision-row--large {
    grid-template-columns: 1fr 1fr;
}

.mobile-decision-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
    cursor: pointer;
}

.mobile-decision-option input {
    width: auto;
    min-height: auto;
    margin-top: 2px;
    padding: 0;
}

/* Formular-Labels stehen über ihrem Feld (sonst rutscht ein inline-Label neben/unter ein
   inline-block-Textarea, z. B. bei "Kostenhinweise"). */
.mobile-handover-shell .form-label {
    display: block;
    margin-bottom: 6px;
}

/* Checkbox-style Decision Option */
.mobile-decision-option--checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 18px;
    border: 2px solid rgba(18, 50, 74, 0.20);
    background: #f8fafb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-decision-option--checkbox input {
    display: none;
}

.mobile-decision-option--checkbox input:checked + .mobile-decision-checkbox {
    background: #12324a;
    color: white;
}

.mobile-decision-option--checkbox input:checked + .mobile-decision-checkbox .icon {
    color: white;
}

.mobile-decision-option--checkbox input:checked + span + span {
    color: #12324a;
    font-weight: 600;
}

/* Checkbox Circle */
.mobile-decision-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 2px solid rgba(18, 50, 74, 0.30);
    background: white;
    transition: all 0.2s ease;
}

.mobile-decision-checkbox .icon {
    font-size: 14px;
    color: transparent;
    transition: color 0.2s ease;
}

/* Legacy - for backward compatibility */
.mobile-decision-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
    cursor: pointer;
}

.mobile-decision-button .btn {
    width: 100%;
}

/* Damage Items Display */
.mobile-damage-item {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: white;
    margin-bottom: 10px;
}

.mobile-damage-item-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-damage-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #12324a;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.mobile-damage-item-note {
    margin-top: 6px;
}

/* Upload Actions */
.mobile-upload-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-upload-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Thumbnail Grid */
.mobile-upload-thumb-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-upload-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 74, 0.10);
}

.mobile-upload-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Complete Note */
.mobile-complete-note {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(95, 192, 180, 0.10);
    border: 1px solid rgba(95, 192, 180, 0.22);
    color: #12324a;
}

/* Process Items */
.mobile-process-item {
    margin-bottom: 12px;
}

.mobile-process-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.mobile-process-body {
    display: none;
    padding: 16px;
    border-top: 1px solid rgba(18, 50, 74, 0.10);
}

.mobile-process-item.expanded .mobile-process-body {
    display: block;
}

.mobile-step-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 50, 74, 0.10);
    color: #12324a;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mobile-process-copy {
    flex: 1;
    min-width: 0;
}

.mobile-section-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #607789;
    display: block;
}

.mobile-process-copy strong {
    display: block;
    color: #12324a;
    font-weight: 600;
}

.mobile-process-state {
    font-size: 0.75rem;
}

/* Hero Section */
.mobile-handover-shell {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-handover-hero {
    position: relative;
}

.mobile-handover-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #607789;
    padding: 12px 16px;
}

.mobile-handover-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 16px;
    padding: 0 16px 16px;
}

.mobile-handover-title-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.mobile-handover-vehicle-image {
    width: 96px;
    height: 72px;
    border-radius: 16px;
    background: rgba(18, 50, 74, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-handover-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-handover-vehicle-image span {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(18, 50, 74, 0.30);
}

.mobile-handover-head h1 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #12324a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-handover-head p {
    margin: 4px 0 0;
    font-size: 0.875rem;
    color: #607789;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-back-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: white;
    border: 1px solid rgba(18, 50, 74, 0.20);
    color: #12324a;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1;
    white-space: nowrap;
}

.mobile-back-link .icon {
    font-size: 0.95rem;
    line-height: 1;
}

.mobile-back-link span {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.mobile-handover-chip-row {
    display: flex;
    gap: 12px;
    padding: 0 16px 16px;
    flex-wrap: wrap;
}

.mobile-handover-entry {
    display: grid;
    gap: 14px;
    padding: 0 16px 16px;
}

.mobile-handover-entry-copy {
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 246, 250, 0.64));
    box-shadow: 0 16px 32px rgba(18, 50, 74, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.mobile-handover-entry-copy strong {
    display: block;
    color: #12324a;
    font-size: 1rem;
    line-height: 1.4;
}

.mobile-handover-entry-copy p {
    margin: 10px 0 0;
    color: #607789;
    line-height: 1.5;
}

.mobile-handover-title-copy {
    min-width: 0;
}

.mobile-handover-period {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.45;
}

.mobile-handover-head-actions {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 0;
    z-index: 2;
}

.mobile-comment-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 18px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 20px rgba(8, 29, 45, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-size: 1.24rem;
    text-decoration: none;
}

.mobile-comment-link:hover,
.mobile-comment-link:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.mobile-comment-link-count {
    position: absolute;
    top: -5px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #12324a;
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(8, 29, 45, 0.18);
}

.mobile-money-link {
    overflow: visible;
}

.mobile-payment-alert-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 999px;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.62rem;
    box-shadow: 0 8px 18px rgba(127, 29, 29, 0.28);
}

.mobile-step-index-danger {
    background: rgba(220, 38, 38, 0.14);
    color: #b91c1c;
}

.mobile-payment-panel {
    display: grid;
    gap: 16px;
}

.mobile-payment-callout {
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.18);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 255, 255, 0.98));
    padding: 16px 18px;
    color: #7f1d1d;
}

.mobile-payment-callout.is-success {
    border-color: rgba(22, 163, 74, 0.16);
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.98));
    color: #166534;
}

.mobile-payment-list {
    display: grid;
    gap: 12px;
}

.mobile-payment-item {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.96);
    padding: 16px 18px;
}

.mobile-payment-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.mobile-payment-item-amount {
    color: #b91c1c;
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.mobile-payment-item-meta {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.82rem;
}

.mobile-payment-item-meta strong {
    color: #334155;
}

.mobile-booking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 20px rgba(8, 29, 45, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-booking-link:hover,
.mobile-booking-link:focus {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
}

.mobile-booking-link .icon {
    font-size: 1.24rem;
    line-height: 1;
}

.mobile-comment-modal {
    border-radius: 24px;
    overflow: hidden;
}

.mobile-comment-empty {
    color: #607789;
    text-align: center;
    padding: 16px 8px 4px;
}

.mobile-comment-groups {
    display: grid;
    gap: 16px;
}

.mobile-comment-group {
    display: grid;
    gap: 10px;
}

.mobile-comment-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-comment-group-head strong {
    color: #12324a;
    font-size: 0.95rem;
}

.mobile-comment-group-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(18, 50, 74, 0.08);
    color: #12324a;
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-comment-list {
    display: grid;
    gap: 10px;
}

.mobile-comment-card {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.84));
}

.mobile-comment-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-comment-card-head strong {
    color: #12324a;
    font-size: 0.86rem;
}

.mobile-comment-card-head span {
    color: #607789;
    font-size: 0.74rem;
    text-align: right;
}

.mobile-comment-card-text {
    color: #364a63;
    font-size: 0.92rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.mobile-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(18, 50, 74, 0.10);
    color: #607789;
    font-size: 0.8125rem;
}

.mobile-chip .icon {
    font-size: 0.875rem;
}

/* Summary */
.mobile-summary-list {
    display: grid;
    gap: 10px;
}

.mobile-summary-item {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
}

.mobile-summary-item strong,
.mobile-fact strong,
.mobile-summary-item strong {
    display: block;
    color: #12324a;
}

.mobile-summary-cluster {
    display: grid;
    gap: 10px;
}

.mobile-summary-cluster-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #607789;
    margin-top: 4px;
}

/* Checklist Items */
.mobile-item-card {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: white;
    margin-bottom: 10px;
}

.mobile-item-card.is-required {
    border-left: 4px solid #12324a;
}

.mobile-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.mobile-item-head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #12324a;
}

.mobile-required-mark {
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(242, 122, 99, 0.12);
    color: #9f3a27;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-item-body {
    padding-left: 4px;
}

.mobile-item-body .text-soft {
    color: #607789;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.mobile-item-status-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.mobile-centered-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Status Toggle */
.mobile-status-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 74, 0.20);
    background: white;
    cursor: pointer;
}

.mobile-status-toggle.is-checked {
    border-color: #12324a;
    background: rgba(18, 50, 74, 0.10);
}

.mobile-status-toggle-label {
    cursor: pointer;
    margin: 0;
}

.mobile-status-toggle-label input {
    display: none;
}

.mobile-status-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(18, 50, 74, 0.30);
    background: white;
    transition: all 0.2s ease;
}

.mobile-status-toggle.is-checked .mobile-status-toggle-icon {
    background: #12324a;
    border-color: #12324a;
    color: white;
}

.mobile-status-toggle-icon .icon {
    font-size: 12px;
    color: transparent;
    transition: color 0.2s ease;
}

.mobile-status-toggle.is-checked .mobile-status-toggle-icon .icon {
    color: white;
}

/* Response Inputs */
.mobile-response-select {
    min-width: 160px;
}

.mobile-response-textarea {
    min-height: 80px;
}

.mobile-response-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mobile-response-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(18, 50, 74, 0.20);
    background: white;
    cursor: pointer;
}

.mobile-response-option input {
    display: none;
}

.mobile-response-option.is-checked {
    border-color: #12324a;
    background: rgba(18, 50, 74, 0.10);
}

/* Section Grid */
.mobile-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mobile-section {
    padding: 16px;
}

.mobile-section-grid .mobile-process-item {
    margin-bottom: 0;
}

.mobile-section-grid .mobile-process-body {
    padding: 16px;
    border: none;
    border-top: 1px solid rgba(18, 50, 74, 0.10);
    display: block;
}

/* Step Card */
.mobile-step-card {
    padding: 16px;
}

/* Progress Spinner */
.mobile-progress-spinner {
    width: 3.25rem;
    height: 3.25rem;
    border-width: 0.3rem;
}

/* Responsive Adjustments */
@media (min-width: 1025px) {
    .mobile-handover-shell::before {
        content: "Dieser mobile Ablauf ist nur auf Tablet und Smartphone vorgesehen.";
        display: block;
        margin-bottom: 16px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(242, 122, 99, 0.12);
        color: #9f3a27;
    }
}

@media (max-width: 991px) {
    .mobile-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-handover-head {
        flex-direction: column;
    }

    .mobile-handover-title-row {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
    }

    .mobile-handover-vehicle-image {
        width: 96px;
        height: 72px;
        border-radius: 16px;
    }

    .mobile-doc-grid,
    .mobile-doc-images,
    .mobile-fact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-process-trigger,
    .mobile-process-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-section {
        padding: 16px;
    }

    .mobile-step-card {
        padding: 16px;
    }
}

/* Final liquid-glass control overrides */
.mobile-handover-shell .btn,
.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select,
.mobile-handover-shell .input-group-text,
.mobile-handover-shell .mobile-status-toggle,
.mobile-handover-shell .mobile-decision-option {
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
}

.mobile-handover-shell .btn {
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: var(--mobile-glass-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mobile-handover-shell .btn:active {
    transform: translateY(1px) scale(0.992);
}

.mobile-handover-shell .btn:hover,
.mobile-handover-shell .btn:focus {
    box-shadow: 0 18px 28px rgba(18, 50, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mobile-handover-shell .btn-primary {
    background: linear-gradient(180deg, rgba(27, 146, 184, 0.96), rgba(15, 111, 143, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(17, 124, 159, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-handover-shell .btn-primary:hover,
.mobile-handover-shell .btn-primary:focus,
.mobile-handover-shell .btn-primary:active {
    background: linear-gradient(180deg, rgba(31, 156, 195, 0.98), rgba(15, 96, 125, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

.mobile-handover-shell .btn-outline-primary,
.mobile-handover-shell .btn-outline-light {
    background: var(--mobile-glass-bg) !important;
    border: 1px solid rgba(153, 196, 213, 0.78) !important;
    color: var(--mobile-accent-dark) !important;
}

.mobile-handover-shell .btn-outline-light {
    border-color: rgba(209, 221, 229, 0.88) !important;
    color: var(--mobile-muted) !important;
}

.mobile-handover-shell .btn[disabled],
.mobile-handover-shell .btn.disabled {
    background: linear-gradient(180deg, rgba(177, 209, 223, 0.92), rgba(146, 187, 204, 0.92)) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 0.92;
    box-shadow: none;
}

.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(181, 202, 214, 0.92);
    background: var(--mobile-glass-bg-strong);
    color: var(--mobile-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(18, 50, 74, 0.05);
    padding-left: 16px;
    padding-right: 16px;
}

.mobile-handover-shell textarea.form-control {
    min-height: 108px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.mobile-handover-shell .form-control::placeholder,
.mobile-handover-shell .form-select::placeholder {
    color: rgba(93, 113, 135, 0.84);
}

.mobile-handover-shell .form-control:focus,
.mobile-handover-shell .form-select:focus {
    border-color: rgba(89, 171, 201, 0.95);
    box-shadow: 0 0 0 4px rgba(73, 170, 205, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 253, 0.84));
}

.mobile-handover-shell .input-group-text {
    border: 1px solid rgba(181, 202, 214, 0.92);
    border-radius: 18px;
    background: var(--mobile-glass-bg);
    color: var(--mobile-muted);
    padding-inline: 16px;
}

.mobile-handover-shell .mobile-decision-row {
    gap: 12px;
}

.mobile-handover-shell .mobile-decision-option {
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: var(--mobile-glass-bg);
    box-shadow: var(--mobile-glass-shadow-soft);
    color: var(--mobile-ink);
}

.mobile-handover-shell .mobile-decision-option:hover {
    border-color: rgba(149, 203, 223, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 251, 253, 0.70));
}

.mobile-handover-shell .mobile-decision-option input[type="radio"],
.mobile-handover-shell .mobile-decision-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--mobile-accent);
    flex: 0 0 auto;
}

.mobile-handover-shell .mobile-decision-option span:last-child {
    flex: 1 1 auto;
    line-height: 1.45;
    font-weight: 600;
}

.mobile-handover-shell .mobile-status-toggle {
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--mobile-glass-bg);
    color: var(--mobile-ink);
    box-shadow: var(--mobile-glass-shadow-soft);
}

.mobile-handover-shell .mobile-status-toggle input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.mobile-handover-shell .mobile-status-toggle:hover {
    border-color: rgba(145, 199, 218, 0.88);
}

.mobile-handover-shell .mobile-status-toggle.is-checked {
    border-color: rgba(36, 145, 89, 0.48);
    background: linear-gradient(180deg, rgba(232, 249, 239, 0.98), rgba(210, 241, 222, 0.92));
    color: #15673e;
    box-shadow: 0 14px 26px rgba(21, 103, 62, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-handover-shell .mobile-status-toggle-indicator {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(106, 132, 155, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 247, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 3px 8px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle-indicator::after {
    width: 11px;
    height: 11px;
    box-shadow: 0 1px 4px rgba(17, 124, 159, 0.28);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(33, 129, 78, 0.72);
    background: linear-gradient(180deg, #2bb56d, #1f8a52);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    width: 7px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: translate(-50%, -58%) rotate(45deg);
}

.mobile-handover-shell .mobile-status-toggle-copy {
    font-size: 0.96rem;
    line-height: 1.1;
    font-weight: 700;
}

.mobile-handover-shell .mobile-upload-actions {
    gap: 10px;
    justify-content: flex-start;
}

.mobile-handover-shell .mobile-upload-actions .btn,
.mobile-handover-shell .mobile-upload-actions label.btn {
    min-width: 128px;
}

.mobile-handover-shell .mobile-item-toggle {
    min-height: 44px;
    border-radius: 16px;
}

.mobile-handover-shell .mobile-process-state {
    border-radius: 999px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 253, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-handover-shell .mobile-required-mark {
    background: linear-gradient(180deg, rgba(255, 244, 224, 0.95), rgba(251, 236, 199, 0.82));
    border: 1px solid rgba(236, 193, 113, 0.55);
    color: #8e5a05;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.mobile-handover-shell .signature-preview-card,
.mobile-handover-shell .signature-pad-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 252, 0.70));
    box-shadow: var(--mobile-glass-shadow-soft);
}

.mobile-handover-shell.is-flow-started .mobile-handover-hero {
    padding: 14px 16px;
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(18, 50, 74, 0.14);
}

.mobile-handover-shell.is-flow-started .mobile-handover-kicker,
.mobile-handover-shell.is-flow-started .mobile-handover-chip-row {
    display: none;
}

.mobile-handover-shell.is-flow-started .mobile-handover-head {
    display: block;
    padding: 54px 0 0 0;
}

.mobile-handover-shell.is-flow-started .mobile-handover-title-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.mobile-handover-shell.is-flow-started .mobile-handover-vehicle-image {
    width: 54px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(18, 50, 74, 0.16);
}

.mobile-handover-shell.is-flow-started .mobile-handover-head h1 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.08;
}

.mobile-handover-shell.is-flow-started .mobile-handover-head p {
    margin-top: 3px;
    font-size: 0.78rem;
    opacity: 0.9;
}

.mobile-handover-shell.is-flow-started .mobile-handover-period {
    margin-top: 4px;
    font-size: 0.74rem;
}

.mobile-handover-shell.is-flow-started .mobile-handover-head-actions {
    gap: 8px;
}

.mobile-handover-shell.is-flow-started .mobile-comment-link {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: 1.02rem;
}

.mobile-handover-shell.is-flow-started .mobile-comment-link-count {
    min-width: 16px;
    height: 16px;
    top: -4px;
    right: -3px;
    font-size: 0.56rem;
}

.mobile-handover-shell.is-flow-started .mobile-handover-entry {
    display: none;
}

.mobile-handover-shell.is-flow-started .mobile-booking-link {
    width: 42px;
    height: 42px;
    border-radius: 15px;
}

.mobile-handover-shell.is-flow-started .mobile-booking-link .icon {
    font-size: 1.02rem;
}

.mobile-handover-shell:not(.is-flow-started) .mobile-handover-hero {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .mobile-handover-shell .mobile-centered-actions,
    .mobile-handover-shell .mobile-upload-actions,
    .mobile-handover-shell .mobile-complete-actions {
        align-items: stretch;
    }

    .mobile-handover-shell .mobile-centered-actions .btn,
    .mobile-handover-shell .mobile-upload-actions .btn,
    .mobile-handover-shell .mobile-complete-actions .btn,
    .mobile-handover-shell .mobile-upload-actions label.btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-handover-shell .mobile-status-toggle {
        width: 100%;
        justify-content: center;
    }

    .mobile-handover-head {
        padding-top: 76px;
        padding-right: 0;
    }

    .mobile-handover-shell.is-flow-started .mobile-handover-head {
        padding-right: 0;
    }

    .mobile-handover-title-row,
    .mobile-handover-shell.is-flow-started .mobile-handover-title-row {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
        justify-items: center;
    }

    .mobile-handover-vehicle-image,
    .mobile-handover-shell.is-flow-started .mobile-handover-vehicle-image {
        justify-self: center;
        width: 148px;
        height: 108px;
        border-radius: 22px;
    }

    .mobile-handover-title-copy {
        width: 100%;
        text-align: left;
    }

    .mobile-handover-head h1,
    .mobile-handover-shell.is-flow-started .mobile-handover-head h1 {
        max-width: none;
        font-size: clamp(2rem, 8.5vw, 2.6rem);
        line-height: 1.02;
    }

    .mobile-handover-head p,
    .mobile-handover-shell.is-flow-started .mobile-handover-head p,
    .mobile-handover-period,
    .mobile-handover-shell.is-flow-started .mobile-handover-period {
        width: 100%;
    }

    .mobile-handover-shell.is-flow-started .mobile-handover-head p,
    .mobile-handover-shell.is-flow-started .mobile-handover-period {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .mobile-comment-card-head {
        flex-direction: column;
        gap: 4px;
    }

    .mobile-comment-card-head span {
        text-align: left;
    }
}

/* EOF bottom navigation overrides */
body.has-mobile-process-dock .nk-content {
    padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
}

.mobile-handover-shell {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
}

.mobile-handover-shell .mobile-process {
    display: grid;
    gap: 14px;
}

.mobile-handover-shell .mobile-process-item {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 248, 251, 0.62));
    box-shadow: 0 18px 42px rgba(18, 50, 74, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mobile-handover-shell .mobile-process-item.is-active {
    border-color: rgba(123, 196, 220, 0.92);
    box-shadow: 0 22px 48px rgba(16, 118, 150, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.mobile-handover-shell .mobile-process-trigger {
    min-height: 76px;
    padding: 18px 18px 17px;
}

.mobile-handover-shell .mobile-process-trigger:disabled {
    opacity: 1;
    cursor: default;
}

.mobile-handover-shell .mobile-process-copy strong {
    line-height: 1.28;
}

.mobile-handover-shell .mobile-step-index {
    width: 38px;
    height: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 245, 0.86));
    border: 1px solid rgba(171, 197, 212, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 6px 14px rgba(18, 50, 74, 0.08);
}

.mobile-handover-shell .mobile-process-item.is-active .mobile-step-index {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(36, 173, 214, 0.96), rgba(13, 104, 134, 0.96));
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 12px 26px rgba(17, 124, 159, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.mobile-handover-shell .mobile-step-index .icon {
    font-size: 1rem;
    line-height: 1;
}

.mobile-handover-shell .mobile-process-body {
    padding: 4px 18px 18px;
    border-top: 1px solid rgba(180, 203, 215, 0.44);
}

.mobile-process-dock {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: min(100vw - 16px, 660px);
    z-index: 1030;
    pointer-events: none;
}

.mobile-process-dock::before,
.mobile-process-dock::after {
    content: '';
    position: absolute;
    top: 54px;
    bottom: 10px;
    width: 38px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.mobile-process-dock::before {
    left: 8px;
    background: linear-gradient(90deg, rgba(234, 244, 248, 0.98), rgba(234, 244, 248, 0));
}

.mobile-process-dock::after {
    right: 8px;
    background: linear-gradient(270deg, rgba(234, 244, 248, 0.98), rgba(234, 244, 248, 0));
}

.mobile-process-dock.is-scrollable:not(.is-at-start)::before,
.mobile-process-dock.is-scrollable:not(.is-at-end)::after {
    opacity: 1;
}

.mobile-process-dock-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, rgba(245, 250, 252, 0.76), rgba(229, 239, 244, 0.58));
    -webkit-backdrop-filter: blur(24px) saturate(1.24);
    backdrop-filter: blur(24px) saturate(1.24);
    box-shadow: 0 26px 48px rgba(18, 50, 74, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    scrollbar-width: none;
    pointer-events: auto;
}

.mobile-process-dock-track::-webkit-scrollbar {
    display: none;
}

.mobile-process-dock-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.mobile-process-dock.is-scrollable .mobile-process-dock-scroll-indicator {
    opacity: 1;
    transform: translateY(0);
}

.mobile-process-dock-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: rgba(54, 128, 156, 0.78);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mobile-process-dock.is-at-start .mobile-process-dock-scroll-arrow--left,
.mobile-process-dock.is-at-end .mobile-process-dock-scroll-arrow--right {
    opacity: 0.32;
}

.mobile-process-dock-scroll-track {
    position: relative;
    display: block;
    width: 78px;
    height: 4px;
    border-radius: 999px;
    background: rgba(125, 158, 176, 0.28);
    overflow: hidden;
}

.mobile-process-dock-scroll-thumb {
    position: absolute;
    top: 0;
    left: 18px;
    width: 26px;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(38, 162, 201, 0.58), rgba(16, 108, 139, 0.92));
    animation: mobileDockThumbShift 1.7s ease-in-out infinite;
}

.mobile-process-dock.is-at-start:not(.is-at-end) .mobile-process-dock-scroll-thumb {
    left: 8px;
}

.mobile-process-dock.is-at-end:not(.is-at-start) .mobile-process-dock-scroll-thumb {
    left: 44px;
}

.mobile-process-dock-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    min-height: 70px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 247, 250, 0.70));
    color: #4c6275;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 10px 22px rgba(18, 50, 74, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
    text-align: center;
}

.mobile-process-dock-item:active {
    transform: translateY(1px) scale(0.985);
}

.mobile-process-dock-item.is-active {
    color: #0f6280;
    border-color: rgba(126, 200, 223, 0.96);
    background: linear-gradient(180deg, rgba(236, 248, 252, 0.96), rgba(212, 237, 246, 0.84));
    box-shadow: 0 18px 28px rgba(17, 124, 159, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.mobile-process-dock-item.is-done:not(.is-active) {
    color: #176d59;
    border-color: rgba(151, 215, 196, 0.88);
    background: linear-gradient(180deg, rgba(240, 251, 246, 0.94), rgba(224, 244, 235, 0.82));
}

.mobile-process-dock-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(18, 50, 74, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.mobile-process-dock-index .icon {
    font-size: 0.94rem;
    line-height: 1;
}

.mobile-process-dock-item.is-active .mobile-process-dock-index {
    background: linear-gradient(180deg, rgba(33, 165, 205, 0.96), rgba(15, 105, 136, 0.96));
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 124, 159, 0.22);
}

.mobile-process-dock-item.is-done:not(.is-active) .mobile-process-dock-index {
    background: linear-gradient(180deg, rgba(103, 198, 155, 0.94), rgba(62, 155, 115, 0.94));
    color: #ffffff;
}

.mobile-process-dock-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.05rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .mobile-process-dock {
        width: min(100vw - 32px, 720px);
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    body.has-mobile-process-dock .nk-content {
        padding-bottom: calc(144px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-handover-shell {
        padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-process-dock {
        width: calc(100vw - 12px);
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-process-dock-track {
        gap: 8px;
        padding: 10px;
        border-radius: 24px;
    }

    .mobile-process-dock-item {
        min-width: 68px;
        min-height: 66px;
        padding: 9px 10px;
        border-radius: 20px;
    }

    .mobile-process-dock-label {
        font-size: 0.69rem;
    }

    .mobile-process-dock-scroll-indicator {
        margin-top: 6px;
        gap: 8px;
    }

    .mobile-process-dock-scroll-track {
        width: 68px;
    }
}

@keyframes mobileDockThumbShift {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.58;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Final liquid-glass control overrides */
.mobile-handover-shell .btn,
.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select,
.mobile-handover-shell .input-group-text,
.mobile-handover-shell .mobile-status-toggle,
.mobile-handover-shell .mobile-decision-option {
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
}

.mobile-handover-shell .btn {
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: var(--mobile-glass-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mobile-handover-shell .btn:active {
    transform: translateY(1px) scale(0.992);
}

.mobile-handover-shell .btn:hover,
.mobile-handover-shell .btn:focus {
    box-shadow: 0 18px 28px rgba(18, 50, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mobile-handover-shell .btn-primary {
    background: linear-gradient(180deg, rgba(27, 146, 184, 0.96), rgba(15, 111, 143, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(17, 124, 159, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-handover-shell .btn-primary:hover,
.mobile-handover-shell .btn-primary:focus,
.mobile-handover-shell .btn-primary:active {
    background: linear-gradient(180deg, rgba(31, 156, 195, 0.98), rgba(15, 96, 125, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

.mobile-handover-shell .btn-outline-primary,
.mobile-handover-shell .btn-outline-light {
    background: var(--mobile-glass-bg) !important;
    border: 1px solid rgba(153, 196, 213, 0.78) !important;
    color: var(--mobile-accent-dark) !important;
}

.mobile-handover-shell .btn-outline-light {
    border-color: rgba(209, 221, 229, 0.88) !important;
    color: var(--mobile-muted) !important;
}

.mobile-handover-shell .btn[disabled],
.mobile-handover-shell .btn.disabled {
    background: linear-gradient(180deg, rgba(177, 209, 223, 0.92), rgba(146, 187, 204, 0.92)) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 0.92;
    box-shadow: none;
}

.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(181, 202, 214, 0.92);
    background: var(--mobile-glass-bg-strong);
    color: var(--mobile-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(18, 50, 74, 0.05);
    padding-left: 16px;
    padding-right: 16px;
}

.mobile-handover-shell textarea.form-control {
    min-height: 108px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.mobile-handover-shell .form-control::placeholder,
.mobile-handover-shell .form-select::placeholder {
    color: rgba(93, 113, 135, 0.84);
}

.mobile-handover-shell .form-control:focus,
.mobile-handover-shell .form-select:focus {
    border-color: rgba(89, 171, 201, 0.95);
    box-shadow: 0 0 0 4px rgba(73, 170, 205, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 253, 0.84));
}

.mobile-handover-shell .input-group-text {
    border: 1px solid rgba(181, 202, 214, 0.92);
    border-radius: 18px;
    background: var(--mobile-glass-bg);
    color: var(--mobile-muted);
    padding-inline: 16px;
}

.mobile-handover-shell .mobile-decision-row {
    gap: 12px;
}

.mobile-handover-shell .mobile-decision-option {
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: var(--mobile-glass-bg);
    box-shadow: var(--mobile-glass-shadow-soft);
    color: var(--mobile-ink);
}

.mobile-handover-shell .mobile-decision-option:hover {
    border-color: rgba(149, 203, 223, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 251, 253, 0.70));
}

.mobile-handover-shell .mobile-decision-option input[type="radio"],
.mobile-handover-shell .mobile-decision-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--mobile-accent);
    flex: 0 0 auto;
}

.mobile-handover-shell .mobile-decision-option span:last-child {
    flex: 1 1 auto;
    line-height: 1.45;
    font-weight: 600;
}

.mobile-handover-shell .mobile-status-toggle {
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 247, 251, 0.28));
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    color: var(--mobile-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle:hover {
    border-color: rgba(160, 208, 224, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(241, 247, 251, 0.34));
}

.mobile-handover-shell .mobile-status-toggle.is-checked {
    border-color: rgba(43, 167, 104, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, rgba(56, 199, 126, 0.42), rgba(28, 150, 90, 0.26));
    color: #145f39;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 14px 30px rgba(24, 112, 68, 0.16);
}

.mobile-handover-shell .mobile-status-toggle-indicator {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(106, 132, 155, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 247, 0.74));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle-indicator::after {
    width: 10px;
    height: 10px;
    background: rgba(120, 145, 165, 0.28);
    box-shadow: none;
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(28, 132, 79, 0.54);
    background: linear-gradient(180deg, #2db76d, #1f8b53);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 6px 16px rgba(22, 98, 60, 0.24);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    width: 7px;
    height: 12px;
    background: transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.mobile-handover-shell .mobile-status-toggle-copy {
    font-size: 0.96rem;
    line-height: 1.1;
    font-weight: 700;
}

.mobile-handover-shell .mobile-upload-actions {
    gap: 10px;
    justify-content: flex-start;
}

.mobile-handover-shell .mobile-upload-actions .btn,
.mobile-handover-shell .mobile-upload-actions label.btn {
    min-width: 128px;
}

.mobile-handover-shell .mobile-item-toggle {
    min-height: 44px;
    border-radius: 16px;
}

.mobile-handover-shell .mobile-process-state {
    border-radius: 999px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 253, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-handover-shell .mobile-required-mark {
    background: linear-gradient(180deg, rgba(255, 244, 224, 0.95), rgba(251, 236, 199, 0.82));
    border: 1px solid rgba(236, 193, 113, 0.55);
    color: #8e5a05;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.mobile-handover-shell .signature-preview-card,
.mobile-handover-shell .signature-pad-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 252, 0.70));
    box-shadow: var(--mobile-glass-shadow-soft);
}

@media (max-width: 767px) {
    .mobile-handover-shell .mobile-centered-actions,
    .mobile-handover-shell .mobile-upload-actions,
    .mobile-handover-shell .mobile-complete-actions {
        align-items: stretch;
    }

    .mobile-handover-shell .mobile-centered-actions .btn,
    .mobile-handover-shell .mobile-upload-actions .btn,
    .mobile-handover-shell .mobile-complete-actions .btn,
    .mobile-handover-shell .mobile-upload-actions label.btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-handover-shell .mobile-status-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Final override for damage checklist shown-toggle. Keep at EOF so duplicates above cannot override it. */
.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle {
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(241, 247, 251, 0.30));
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle:hover,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle:hover {
    border-color: rgba(160, 208, 224, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(241, 247, 251, 0.36));
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle.is-checked,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle.is-checked {
    border-color: rgba(43, 167, 104, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.10)),
        linear-gradient(135deg, rgba(56, 199, 126, 0.42), rgba(28, 150, 90, 0.28));
    color: #145f39;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 14px 30px rgba(24, 112, 68, 0.16);
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle-indicator,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle-indicator {
    border: 1.5px solid rgba(106, 132, 155, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 247, 0.74));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.90),
        0 4px 12px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle-indicator::after,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle-indicator::after {
    width: 10px;
    height: 10px;
    background: rgba(120, 145, 165, 0.28);
    box-shadow: none;
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle.is-checked .mobile-status-toggle-indicator,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(28, 132, 79, 0.54);
    background: linear-gradient(180deg, #2db76d, #1f8b53);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 6px 16px rgba(22, 98, 60, 0.24);
}

.mobile-handover-shell .mobile-damage-actions .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after,
.mobile-handover-shell .mobile-damage-location-head .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    width: 7px;
    height: 12px;
    background: transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

/* Final visual override for the damage shown-toggle in the mobile handover flow. */
.mobile-handover-shell .mobile-status-toggle {
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 247, 251, 0.28));
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 24px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle:hover {
    border-color: rgba(160, 208, 224, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(241, 247, 251, 0.34));
}

.mobile-handover-shell .mobile-status-toggle.is-checked {
    border-color: rgba(43, 167, 104, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, rgba(56, 199, 126, 0.42), rgba(28, 150, 90, 0.26));
    color: #145f39;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 14px 30px rgba(24, 112, 68, 0.16);
}

.mobile-handover-shell .mobile-status-toggle-indicator {
    border: 1.5px solid rgba(106, 132, 155, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 247, 0.74));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle-indicator::after {
    width: 10px;
    height: 10px;
    background: rgba(120, 145, 165, 0.28);
    box-shadow: none;
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(28, 132, 79, 0.54);
    background: linear-gradient(180deg, #2db76d, #1f8b53);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 6px 16px rgba(22, 98, 60, 0.24);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    width: 7px;
    height: 12px;
    background: transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

/* Liquid Glass Mobile Controls */
.mobile-handover-shell {
    --mobile-glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52));
    --mobile-glass-bg-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66));
    --mobile-glass-border: rgba(255, 255, 255, 0.62);
    --mobile-glass-shadow: 0 16px 34px rgba(18, 50, 74, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    --mobile-glass-shadow-soft: 0 10px 24px rgba(18, 50, 74, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    --mobile-accent: #117c9f;
    --mobile-accent-dark: #0f607d;
    --mobile-ink: #17324b;
    --mobile-muted: #5d7187;
}

.mobile-handover-shell .btn,
.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select,
.mobile-handover-shell .input-group-text,
.mobile-handover-shell .mobile-status-toggle,
.mobile-handover-shell .mobile-decision-option {
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
}

.mobile-handover-shell .btn {
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: var(--mobile-glass-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mobile-handover-shell .btn:active {
    transform: translateY(1px) scale(0.992);
}

.mobile-handover-shell .btn:hover,
.mobile-handover-shell .btn:focus {
    box-shadow: 0 18px 28px rgba(18, 50, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mobile-handover-shell .btn-primary {
    background: linear-gradient(180deg, rgba(27, 146, 184, 0.96), rgba(15, 111, 143, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(17, 124, 159, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-handover-shell .btn-primary:hover,
.mobile-handover-shell .btn-primary:focus,
.mobile-handover-shell .btn-primary:active {
    background: linear-gradient(180deg, rgba(31, 156, 195, 0.98), rgba(15, 96, 125, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

.mobile-handover-shell .btn-outline-primary,
.mobile-handover-shell .btn-outline-light {
    background: var(--mobile-glass-bg) !important;
    border: 1px solid rgba(153, 196, 213, 0.78) !important;
    color: var(--mobile-accent-dark) !important;
}

.mobile-handover-shell .btn-outline-light {
    border-color: rgba(209, 221, 229, 0.88) !important;
    color: var(--mobile-muted) !important;
}

.mobile-handover-shell .btn[disabled],
.mobile-handover-shell .btn.disabled {
    background: linear-gradient(180deg, rgba(177, 209, 223, 0.92), rgba(146, 187, 204, 0.92)) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 0.92;
    box-shadow: none;
}

.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(181, 202, 214, 0.92);
    background: var(--mobile-glass-bg-strong);
    color: var(--mobile-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(18, 50, 74, 0.05);
    padding-left: 16px;
    padding-right: 16px;
}

.mobile-handover-shell textarea.form-control {
    min-height: 108px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.mobile-handover-shell .form-control::placeholder,
.mobile-handover-shell .form-select::placeholder {
    color: rgba(93, 113, 135, 0.84);
}

.mobile-handover-shell .form-control:focus,
.mobile-handover-shell .form-select:focus {
    border-color: rgba(89, 171, 201, 0.95);
    box-shadow: 0 0 0 4px rgba(73, 170, 205, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 253, 0.84));
}

.mobile-handover-shell .input-group {
    border-radius: 18px;
}

.mobile-handover-shell .input-group-text {
    border: 1px solid rgba(181, 202, 214, 0.92);
    border-radius: 18px;
    background: var(--mobile-glass-bg);
    color: var(--mobile-muted);
    padding-inline: 16px;
}

.mobile-handover-shell .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.mobile-handover-shell .input-group > .input-group-text {
    margin-left: 8px;
}

.mobile-handover-shell .mobile-decision-row {
    gap: 12px;
}

.mobile-handover-shell .mobile-decision-option {
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: var(--mobile-glass-bg);
    box-shadow: var(--mobile-glass-shadow-soft);
    color: var(--mobile-ink);
}

.mobile-handover-shell .mobile-decision-option:hover {
    border-color: rgba(149, 203, 223, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 251, 253, 0.70));
}

.mobile-handover-shell .mobile-decision-option input[type="radio"],
.mobile-handover-shell .mobile-decision-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--mobile-accent);
    flex: 0 0 auto;
}

.mobile-handover-shell .mobile-decision-option span:last-child {
    flex: 1 1 auto;
    line-height: 1.45;
    font-weight: 600;
}

.mobile-handover-shell .mobile-status-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--mobile-glass-bg);
    color: var(--mobile-ink);
    box-shadow: var(--mobile-glass-shadow-soft);
}

.mobile-handover-shell .mobile-status-toggle:hover {
    border-color: rgba(145, 199, 218, 0.88);
}

.mobile-handover-shell .mobile-status-toggle.is-checked {
    border-color: rgba(109, 194, 224, 0.9);
    background: linear-gradient(180deg, rgba(230, 247, 252, 0.94), rgba(213, 239, 247, 0.72));
    color: var(--mobile-accent-dark);
    box-shadow: 0 14px 26px rgba(17, 124, 159, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mobile-handover-shell .mobile-status-toggle-indicator {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(106, 132, 155, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 247, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 3px 8px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle-indicator::after {
    width: 11px;
    height: 11px;
    box-shadow: 0 1px 4px rgba(17, 124, 159, 0.28);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(44, 146, 182, 0.68);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 248, 253, 0.94));
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    background: linear-gradient(180deg, #22a4cd, #0e6e8f);
}

.mobile-handover-shell .mobile-status-toggle-copy {
    font-size: 0.96rem;
    line-height: 1.1;
    font-weight: 700;
}

.mobile-handover-shell .mobile-upload-actions {
    gap: 10px;
    justify-content: flex-start;
}

.mobile-handover-shell .mobile-upload-actions .btn,
.mobile-handover-shell .mobile-upload-actions label.btn {
    min-width: 128px;
}

.mobile-handover-shell .mobile-item-toggle {
    min-height: 44px;
    border-radius: 16px;
}

.mobile-handover-shell .mobile-process-state {
    border-radius: 999px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 253, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-handover-shell .mobile-required-mark {
    background: linear-gradient(180deg, rgba(255, 244, 224, 0.95), rgba(251, 236, 199, 0.82));
    border: 1px solid rgba(236, 193, 113, 0.55);
    color: #8e5a05;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.mobile-handover-shell .mobile-upload-card,
.mobile-handover-shell .mobile-item-card,
.mobile-handover-shell .mobile-doc-panel,
.mobile-handover-shell .mobile-summary-item,
.mobile-handover-shell .mobile-fact {
    box-shadow: 0 16px 34px rgba(18, 50, 74, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.mobile-handover-shell .signature-preview-card,
.mobile-handover-shell .signature-pad-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 252, 0.70));
    box-shadow: var(--mobile-glass-shadow-soft);
}

@media (max-width: 767px) {
    .mobile-handover-shell .mobile-centered-actions,
    .mobile-handover-shell .mobile-upload-actions,
    .mobile-handover-shell .mobile-complete-actions {
        align-items: stretch;
    }

    .mobile-handover-shell .mobile-centered-actions .btn,
    .mobile-handover-shell .mobile-upload-actions .btn,
    .mobile-handover-shell .mobile-complete-actions .btn,
    .mobile-handover-shell .mobile-upload-actions label.btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-handover-shell .mobile-status-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Damage Folder Styles */
.mobile-damage-location-group {
    overflow: hidden;
}

.mobile-damage-location-group .card-body {
    padding: 8px !important;
}

.mobile-damage-item {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: white;
    margin-bottom: 8px;
    overflow: hidden;
}

.mobile-damage-item .d-flex {
    flex-wrap: wrap;
}

.mobile-damage-thumb {
    flex-shrink: 0;
}

.mobile-damage-item .flex-grow-1 {
    min-width: 0;
    flex-basis: 0;
}

.mobile-damage-item .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-damage-item .flex-shrink-0:last-child {
    margin-left: 8px;
}

@media (max-width: 575px) {
    .mobile-damage-item .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mobile-damage-item .mobile-damage-thumb {
        order: -1;
        margin-right: 8px;
    }
    
    .mobile-damage-item .flex-shrink-0:last-child {
        margin-left: 0;
        width: 100%;
    }
    
    .mobile-damage-item .flex-shrink-0:last-child .mobile-status-toggle {
        display: block;
        text-align: center;
    }
}

/* Damage Details Modal */
.damage-detail-container {
    max-width: 100%;
}
.damage-detail-container img {
    max-width: 100%;
    height: auto;
}

/* Clickable damage item */
.mobile-damage-item {
    cursor: pointer;
}
.mobile-damage-item:hover {
    background-color: rgba(18, 50, 74, 0.05);
}

/* Text primary color for links */
.text-primary {
    color: #0d6efd !important;
}

/* Restored Handover Mobile Checklist Styles */
.mobile-handover-shell {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.mobile-handover-hero {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(145deg, #12324a 0%, #1b5873 52%, #5fc0b4 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(18, 50, 74, 0.22);
    border: 0;
    position: relative;
}

.mobile-handover-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    opacity: 0.76;
    margin-bottom: 12px;
    padding: 0;
    color: inherit;
}

.mobile-handover-head {
    display: block;
    align-items: flex-start;
    padding: 72px 136px 0 0;
}

.mobile-handover-title-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.mobile-handover-shell:not(.is-flow-started) .mobile-handover-title-row {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    align-items: start;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.mobile-handover-vehicle-image {
    width: 112px;
    height: 82px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(18, 50, 74, 0.20);
}

.mobile-handover-shell:not(.is-flow-started) .mobile-handover-vehicle-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    justify-self: center;
}

.mobile-handover-shell:not(.is-flow-started) .mobile-handover-title-copy {
    width: 100%;
}

.mobile-handover-head h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.04;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.mobile-handover-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.mobile-back-link {
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 50, 74, 0.08);
    color: #12324a;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 50, 74, 0.16);
    border-radius: 999px;
    padding: 10px 16px;
}

.mobile-back-link:hover,
.mobile-back-link:focus {
    background: #fff;
    color: #0f2b40;
}

.mobile-handover-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
}

.mobile-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.95rem;
}

.mobile-chip .icon {
    font-size: 0.95rem;
}

.mobile-process {
    display: grid;
    gap: 14px;
}

.mobile-process-item {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
    margin-bottom: 0;
}

.mobile-process-item.is-active {
    box-shadow: 0 16px 34px rgba(18, 50, 74, 0.10);
    border-color: rgba(18, 50, 74, 0.16);
}

.mobile-process-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    text-align: left;
    border: 0;
    background: transparent;
}

.mobile-process-body {
    padding: 0 20px 20px;
    border-top: 1px solid rgba(18, 50, 74, 0.08);
}

.mobile-process-body[hidden] {
    display: none !important;
}

.mobile-process-item.expanded .mobile-process-body {
    display: block;
}

.mobile-process-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.mobile-process-copy strong {
    display: block;
    color: #12324a;
    font-size: 1.02rem;
    font-weight: 700;
}

.mobile-process-state {
    flex: 0 0 auto;
    font-size: 0.75rem;
}

.mobile-step-index {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #12324a;
    color: #fff;
    font-weight: 700;
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.mobile-section {
    border-radius: 24px;
    padding: 20px;
    background: #fff;
}

.mobile-step-card {
    border-radius: 24px;
    padding: 20px;
    background: #fff;
}

.mobile-section-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.mobile-section-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #7f8d98;
    margin-bottom: 6px;
}

.mobile-item-card {
    border: 1px solid rgba(18, 50, 74, 0.10);
    border-radius: 18px;
    padding: 14px;
    background: #f8fafb;
    margin-bottom: 12px;
}

.mobile-item-card.is-required {
    border-color: rgba(240, 173, 78, 0.45);
    background: linear-gradient(180deg, rgba(255, 248, 232, 0.95), #f8fafb);
    box-shadow: inset 4px 0 0 #f0ad4e;
}

.mobile-item-card:last-child {
    margin-bottom: 0;
}

.mobile-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-item-head h3 {
    margin: 0;
    font-size: 1rem;
}

.mobile-item-body {
    display: grid;
    gap: 14px;
    padding-left: 0;
}

.mobile-item-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(18, 50, 74, 0.08);
    margin-bottom: 0;
}

.mobile-required-mark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 173, 78, 0.18);
    color: #9a5c05;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: none;
}

.mobile-required-mark::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-upload-stack {
    display: grid;
    gap: 12px;
}

.mobile-upload-card {
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
}

.mobile-upload-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.mobile-upload-card p {
    color: #657887;
    margin-bottom: 12px;
}

.mobile-damage-location-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-damage-location-meta {
    display: block;
    margin-top: 2px;
    color: #7b8a97;
    font-size: 0.72rem;
}

.mobile-damage-list {
    display: grid;
    gap: 10px;
}

.mobile-damage-item {
    border: 1px solid rgba(18, 50, 74, 0.10);
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(18, 50, 74, 0.05);
}

.mobile-damage-item.is-shown {
    border-color: rgba(17, 111, 83, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f2fbf7 100%);
}

.mobile-damage-item-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mobile-damage-preview-trigger {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.mobile-damage-thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(18, 50, 74, 0.08);
    background: #f5f8fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7b8a97;
}

.mobile-damage-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-damage-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.mobile-damage-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.mobile-damage-title {
    font-weight: 700;
    color: #12324a;
    line-height: 1.3;
}

.mobile-damage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.mobile-damage-badge.is-open {
    background: #fff3e8;
    color: #b95a06;
}

.mobile-damage-badge.is-shown {
    background: #e9f8f2;
    color: #116f53;
}

.mobile-damage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #657887;
    font-size: 0.75rem;
}

.mobile-damage-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f4f7f9;
}

.mobile-damage-note {
    color: #516371;
    font-size: 0.82rem;
    line-height: 1.35;
}

.mobile-damage-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-damage-icon-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #fff;
    color: #12324a;
    cursor: pointer;
}

.mobile-damage-icon-button--camera {
    color: #0d6d99;
    background: #edf7fc;
    border-color: rgba(13, 109, 153, 0.18);
}

.mobile-damage-preview-subtitle {
    color: #657887;
    font-size: 0.82rem;
}

.mobile-damage-preview-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.mobile-damage-preview-detail {
    border-radius: 16px;
    background: #f5f8fa;
    padding: 12px;
}

.mobile-damage-preview-detail span {
    display: block;
    color: #7b8a97;
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.mobile-damage-preview-detail strong {
    color: #12324a;
    font-size: 0.95rem;
}

.mobile-damage-preview-note {
    border-radius: 16px;
    background: #fff8ea;
    color: #5e4a14;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.mobile-damage-preview-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mobile-damage-preview-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f4f7f9;
}

.mobile-damage-preview-empty {
    border-radius: 16px;
    background: #f5f8fa;
    color: #657887;
    text-align: center;
    padding: 18px;
}

.mobile-upload-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.mobile-upload-thumb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.mobile-upload-thumb {
    position: relative;
    width: 64px;
    text-decoration: none;
    color: inherit;
    height: auto;
    overflow: visible;
}

.mobile-preview-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
}

@media (max-width: 575.98px) {
    .mobile-damage-item-main {
        flex-wrap: wrap;
    }

    .mobile-damage-actions {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-damage-preview-details,
    .mobile-damage-preview-gallery {
        grid-template-columns: 1fr;
    }
}

.mobile-upload-thumb img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #fff;
}

.mobile-upload-thumb-delete {
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 50, 74, 0.92);
    color: #fff;
    box-shadow: 0 8px 18px rgba(18, 50, 74, 0.22);
    z-index: 2;
}

.mobile-upload-thumb-delete .icon {
    font-size: 0.78rem;
    line-height: 1;
}

#idCardUploadThumbs .mobile-upload-thumb img,
#driverLicenseUploadThumbs .mobile-upload-thumb img,
#additionalDriverLicenseUploadThumbs .mobile-upload-thumb img,
.mobile-doc-card img,
#photoPreviewModalImage.is-document-photo {
    filter: grayscale(1);
}

.mobile-file-group {
    margin-top: 18px;
}

.mobile-file-group h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.mobile-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mobile-doc-panel {
    border-radius: 20px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
    padding: 14px;
}

.mobile-doc-panel h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.mobile-doc-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-doc-facts {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.mobile-doc-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #fff;
}

.mobile-doc-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #f8fafb;
    cursor: zoom-in;
}

.mobile-doc-card-empty {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: #748592;
    background: #f8fafb;
}

.mobile-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-fact {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(18, 50, 74, 0.10);
    background: #f8fafb;
}

.mobile-fact span,
.mobile-summary-item span {
    display: block;
    color: #748592;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mobile-summary-checklist {
    border: 1px solid rgba(18, 50, 74, 0.10);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.mobile-summary-checklist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid rgba(18, 50, 74, 0.08);
}

.mobile-summary-checklist-row:first-child {
    border-top: 0;
}

.mobile-summary-checklist-label {
    min-width: 0;
    flex: 1 1 auto;
    color: #12324a;
    font-weight: 600;
}

.mobile-summary-checklist-note {
    margin-top: 4px;
    color: #748592;
    font-size: 0.82rem;
    font-weight: 400;
}

.mobile-summary-checklist-state {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 0.95rem;
    font-weight: 700;
}

.signature-pad-shell {
    border: 1px solid rgba(18, 50, 74, 0.14);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.signature-preview-card {
    min-height: 120px;
    border: 1px dashed rgba(18, 50, 74, 0.18);
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #748592;
    text-align: center;
}

.signature-preview-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.signature-pad {
    width: 100%;
    height: 220px;
    display: block;
    touch-action: none;
}

.signature-modal-shell {
    min-height: min(68vh, 540px);
}

.signature-modal-pad {
    height: min(68vh, 540px);
}

.mobile-centered-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mobile-complete-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.mobile-progress-spinner {
    width: 3.25rem;
    height: 3.25rem;
    border-width: 0.3rem;
}

.mobile-damage-decision-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.mobile-damage-decision-option {
    justify-content: center;
    min-height: 64px;
    padding: 14px 18px;
    text-align: center;
}

.mobile-damage-decision-option span:last-child {
    line-height: 1.35;
}

.mobile-damage-decision-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 64px;
    padding: 14px 18px;
    border-radius: 18px;
    text-align: center;
}

@media (min-width: 576px) {
    .mobile-damage-decision-row {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

@media (min-width: 1025px) {
    .mobile-handover-shell::before {
        content: "Dieser mobile Ablauf ist nur auf Tablet und Smartphone vorgesehen.";
        display: block;
        margin-bottom: 16px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(242, 122, 99, 0.12);
        color: #9f3a27;
    }
}

@media (max-width: 991px) {
    .mobile-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-handover-shell.is-flow-started .mobile-handover-title-row {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
    }

    .mobile-handover-shell.is-flow-started .mobile-handover-vehicle-image {
        width: 96px;
        height: 72px;
        border-radius: 16px;
    }

    .mobile-doc-grid,
    .mobile-doc-images,
    .mobile-fact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-process-trigger,
    .mobile-process-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mobile-section {
        padding: 16px;
    }

    .mobile-step-card {
        padding: 16px;
    }
}


/* EOF liquid-glass control overrides */
.mobile-handover-shell .btn,
.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select,
.mobile-handover-shell .input-group-text,
.mobile-handover-shell .mobile-status-toggle,
.mobile-handover-shell .mobile-decision-option {
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
}

.mobile-handover-shell .btn {
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: var(--mobile-glass-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mobile-handover-shell .btn:active {
    transform: translateY(1px) scale(0.992);
}

.mobile-handover-shell .btn:hover,
.mobile-handover-shell .btn:focus {
    box-shadow: 0 18px 28px rgba(18, 50, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.mobile-handover-shell .btn-primary {
    background: linear-gradient(180deg, rgba(27, 146, 184, 0.96), rgba(15, 111, 143, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(17, 124, 159, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.mobile-handover-shell .btn-primary:hover,
.mobile-handover-shell .btn-primary:focus,
.mobile-handover-shell .btn-primary:active {
    background: linear-gradient(180deg, rgba(31, 156, 195, 0.98), rgba(15, 96, 125, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

.mobile-handover-shell .btn-outline-primary,
.mobile-handover-shell .btn-outline-light {
    background: var(--mobile-glass-bg) !important;
    border: 1px solid rgba(153, 196, 213, 0.78) !important;
    color: var(--mobile-accent-dark) !important;
}

.mobile-handover-shell .btn-outline-light {
    border-color: rgba(209, 221, 229, 0.88) !important;
    color: var(--mobile-muted) !important;
}

.mobile-handover-shell .btn[disabled],
.mobile-handover-shell .btn.disabled {
    background: linear-gradient(180deg, rgba(177, 209, 223, 0.92), rgba(146, 187, 204, 0.92)) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 0.92;
    box-shadow: none;
}

.mobile-handover-shell .form-control,
.mobile-handover-shell .form-select {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(181, 202, 214, 0.92);
    background: var(--mobile-glass-bg-strong);
    color: var(--mobile-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 20px rgba(18, 50, 74, 0.05);
    padding-left: 16px;
    padding-right: 16px;
}

.mobile-handover-shell textarea.form-control {
    min-height: 108px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.mobile-handover-shell .form-control::placeholder,
.mobile-handover-shell .form-select::placeholder {
    color: rgba(93, 113, 135, 0.84);
}

.mobile-handover-shell .form-control:focus,
.mobile-handover-shell .form-select:focus {
    border-color: rgba(89, 171, 201, 0.95);
    box-shadow: 0 0 0 4px rgba(73, 170, 205, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 253, 0.84));
}

.mobile-handover-shell .input-group-text {
    border: 1px solid rgba(181, 202, 214, 0.92);
    border-radius: 18px;
    background: var(--mobile-glass-bg);
    color: var(--mobile-muted);
    padding-inline: 16px;
}

.mobile-handover-shell .mobile-decision-row {
    gap: 12px;
}

.mobile-handover-shell .mobile-decision-option {
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: var(--mobile-glass-bg);
    box-shadow: var(--mobile-glass-shadow-soft);
    color: var(--mobile-ink);
}

.mobile-handover-shell .mobile-decision-option:hover {
    border-color: rgba(149, 203, 223, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 251, 253, 0.70));
}

.mobile-handover-shell .mobile-decision-option input[type=radio],
.mobile-handover-shell .mobile-decision-option input[type=checkbox] {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--mobile-accent);
    flex: 0 0 auto;
}

.mobile-handover-shell .mobile-decision-option span:last-child {
    flex: 1 1 auto;
    line-height: 1.45;
    font-weight: 600;
}

.mobile-handover-shell .mobile-status-toggle {
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--mobile-glass-bg);
    color: var(--mobile-ink);
    box-shadow: var(--mobile-glass-shadow-soft);
}

.mobile-handover-shell .mobile-status-toggle:hover {
    border-color: rgba(145, 199, 218, 0.88);
}

.mobile-handover-shell .mobile-status-toggle.is-checked {
    border-color: rgba(109, 194, 224, 0.9);
    background: linear-gradient(180deg, rgba(230, 247, 252, 0.94), rgba(213, 239, 247, 0.72));
    color: var(--mobile-accent-dark);
    box-shadow: 0 14px 26px rgba(17, 124, 159, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mobile-handover-shell .mobile-status-toggle-indicator {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(106, 132, 155, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 247, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 3px 8px rgba(18, 50, 74, 0.10);
}

.mobile-handover-shell .mobile-status-toggle-indicator::after {
    width: 11px;
    height: 11px;
    box-shadow: 0 1px 4px rgba(17, 124, 159, 0.28);
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator {
    border-color: rgba(44, 146, 182, 0.68);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 248, 253, 0.94));
}

.mobile-handover-shell .mobile-status-toggle.is-checked .mobile-status-toggle-indicator::after {
    background: linear-gradient(180deg, #22a4cd, #0e6e8f);
}

.mobile-handover-shell .mobile-status-toggle-copy {
    font-size: 0.96rem;
    line-height: 1.1;
    font-weight: 700;
}

.mobile-handover-shell .mobile-upload-actions {
    gap: 10px;
    justify-content: flex-start;
}

.mobile-handover-shell .mobile-upload-actions .btn,
.mobile-handover-shell .mobile-upload-actions label.btn {
    min-width: 128px;
}

.mobile-handover-shell .mobile-item-toggle {
    min-height: 44px;
    border-radius: 16px;
}

.mobile-handover-shell .mobile-process-state {
    border-radius: 999px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 253, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-handover-shell .mobile-required-mark {
    background: linear-gradient(180deg, rgba(255, 244, 224, 0.95), rgba(251, 236, 199, 0.82));
    border: 1px solid rgba(236, 193, 113, 0.55);
    color: #8e5a05;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.mobile-handover-shell .signature-preview-card,
.mobile-handover-shell .signature-pad-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 252, 0.70));
    box-shadow: var(--mobile-glass-shadow-soft);
}

@media (max-width: 767px) {
    .mobile-handover-shell .mobile-centered-actions,
    .mobile-handover-shell .mobile-upload-actions,
    .mobile-handover-shell .mobile-complete-actions {
        align-items: stretch;
    }

    .mobile-handover-shell .mobile-centered-actions .btn,
    .mobile-handover-shell .mobile-upload-actions .btn,
    .mobile-handover-shell .mobile-complete-actions .btn,
    .mobile-handover-shell .mobile-upload-actions label.btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-handover-shell .mobile-status-toggle {
        width: 100%;
        justify-content: center;
    }
}
