/* _content/TrekConnect.Web/Components/Control/HelpButton.razor.rz.scp.css */
.help-button[b-sgz287kzcb] {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.help-button:hover[b-sgz287kzcb] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Position variants */
.help-button--top-right[b-sgz287kzcb] {
    top: 12px;
    right: 12px;
}

.help-button--top-left[b-sgz287kzcb] {
    top: 12px;
    left: 12px;
}

.help-button--bottom-right[b-sgz287kzcb] {
    bottom: 12px;
    right: 12px;
}

.help-button--bottom-left[b-sgz287kzcb] {
    bottom: 12px;
    left: 12px;
}
/* _content/TrekConnect.Web/Components/Control/ImageGallery.razor.rz.scp.css */
/* Image Gallery Component Styles */

.image-gallery-container[b-kxvla7vk71] {
    width: 100%;
}

/* Gallery Grid */
.image-gallery-grid[b-kxvla7vk71] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.image-gallery-item[b-kxvla7vk71] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
}

.image-gallery-item img[b-kxvla7vk71] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.image-gallery-item:hover img[b-kxvla7vk71] {
    transform: scale(1.05);
}

.image-gallery-item-overlay[b-kxvla7vk71] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-gallery-item:hover .image-gallery-item-overlay[b-kxvla7vk71] {
    opacity: 1;
}

.image-gallery-item-info[b-kxvla7vk71] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.image-gallery-item-author[b-kxvla7vk71] {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.image-gallery-item-date[b-kxvla7vk71] {
    color: rgba(255,255,255,0.8);
    font-size: 0.65rem;
}

/* Empty State */
.image-gallery-empty[b-kxvla7vk71] {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.image-gallery-empty i[b-kxvla7vk71] {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.image-gallery-empty p[b-kxvla7vk71] {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.image-gallery-empty small[b-kxvla7vk71] {
    display: block;
    margin-top: 8px;
    color: #aaa;
}

/* Preview Modal */
.image-gallery-preview-overlay[b-kxvla7vk71] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.image-gallery-preview-container[b-kxvla7vk71] {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-gallery-preview-container img[b-kxvla7vk71] {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 8px;
    will-change: transform, opacity;
    touch-action: pan-y;
    transition: opacity 0.3s ease-out;
}

/* Hide image during swipe navigation to prevent flash */
.image-gallery-preview-container.swipe-navigating img[b-kxvla7vk71] {
    opacity: 0;
    pointer-events: none;
}

/* Close Button */
.image-gallery-preview-close[b-kxvla7vk71] {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
}

.image-gallery-preview-close:hover[b-kxvla7vk71] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Info Panel */
.image-gallery-preview-info[b-kxvla7vk71] {
    position: fixed;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    z-index: 1001;
}

.image-gallery-preview-info span[b-kxvla7vk71] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-gallery-preview-info .preview-author[b-kxvla7vk71] {
    font-weight: 600;
}

.image-gallery-preview-info .preview-date[b-kxvla7vk71] {
    opacity: 0.8;
    font-size: 0.8rem;
}

/* Rotate Button */
.image-gallery-preview-rotate[b-kxvla7vk71] {
    position: fixed;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
}

.image-gallery-preview-rotate:hover:not(:disabled)[b-kxvla7vk71] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.image-gallery-preview-rotate:disabled[b-kxvla7vk71] {
    cursor: not-allowed;
    opacity: 0.7;
}

.image-gallery-preview-rotate .spinning[b-kxvla7vk71] {
    animation: spin-b-kxvla7vk71 1s linear infinite;
}

@keyframes spin-b-kxvla7vk71 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Delete Button */
.image-gallery-preview-delete[b-kxvla7vk71] {
    position: fixed;
    top: 16px;
    left: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: var(--bs-danger);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
}

.image-gallery-preview-delete:hover[b-kxvla7vk71] {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}

/* Navigation Arrows */
.image-gallery-preview-nav[b-kxvla7vk71] {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
}

.image-gallery-preview-prev[b-kxvla7vk71] {
    left: 16px;
}

.image-gallery-preview-next[b-kxvla7vk71] {
    right: 16px;
}

.image-gallery-preview-nav:hover[b-kxvla7vk71] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Image Counter */
.image-gallery-preview-counter[b-kxvla7vk71] {
    position: fixed;
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1001;
}

/* Preview Loading Blocker - glass pane that blocks all interaction while loading */
.image-gallery-preview-blocker[b-kxvla7vk71] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    cursor: wait;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Preview Loading Spinner */
.image-gallery-preview-loading[b-kxvla7vk71] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* _content/TrekConnect.Web/Components/Control/ItineraryEditor.razor.rz.scp.css */
.itinerary-editor[b-n2yiu9esbr] {
    min-height: 300px;
}

.itinerary-list[b-n2yiu9esbr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.itinerary-day-card[b-n2yiu9esbr] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.itinerary-day-card.expanded[b-n2yiu9esbr] {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.day-header[b-n2yiu9esbr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.day-header-actions[b-n2yiu9esbr] {
    display: flex;
    align-items: center;
}

.day-number[b-n2yiu9esbr] {
    font-weight: 600;
    color: #0d6efd;
    font-size: 0.9rem;
}

.day-route[b-n2yiu9esbr] {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.route-field[b-n2yiu9esbr] {
    flex: 1;
}

.route-field label[b-n2yiu9esbr] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    display: block;
}

.route-arrow[b-n2yiu9esbr] {
    padding-bottom: 0.5rem;
    color: #6c757d;
}

.day-description label[b-n2yiu9esbr] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    display: block;
}

.day-actions[b-n2yiu9esbr] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: flex-end;
}

.no-itinerary[b-n2yiu9esbr] {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

.no-itinerary i[b-n2yiu9esbr] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.no-itinerary p[b-n2yiu9esbr] {
    margin-bottom: 1rem;
}

/* Map section styles */
.day-map-section[b-n2yiu9esbr] {
    margin-top: 0.75rem;
}

.map-container[b-n2yiu9esbr] {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.itinerary-map[b-n2yiu9esbr] {
    height: 450px;
    width: 100%;
}

/* Waypoints list styles */
.waypoints-list[b-n2yiu9esbr] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.waypoint-item[b-n2yiu9esbr] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.waypoint-item:hover[b-n2yiu9esbr] {
    border-color: #adb5bd;
}

.waypoint-item.selected[b-n2yiu9esbr] {
    border-color: #0d6efd;
    background: #e7f1ff;
}

.waypoint-item.dragging[b-n2yiu9esbr] {
    opacity: 0.5;
    border-style: dashed;
}

.waypoint-item.drag-over[b-n2yiu9esbr] {
    border-color: #0d6efd;
    border-width: 2px;
    background: #f0f7ff;
}

.waypoint-drag-handle[b-n2yiu9esbr] {
    cursor: grab;
    color: #adb5bd;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.waypoint-drag-handle:hover[b-n2yiu9esbr] {
    color: #6c757d;
}

.waypoint-drag-handle:active[b-n2yiu9esbr] {
    cursor: grabbing;
}

.waypoint-icon[b-n2yiu9esbr] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.waypoint-icon.start[b-n2yiu9esbr] { background: #198754; color: white; }
.waypoint-icon.end[b-n2yiu9esbr] { background: #dc3545; color: white; }
.waypoint-icon.tea[b-n2yiu9esbr] { background: #fd7e14; color: white; }
.waypoint-icon.lunch[b-n2yiu9esbr] { background: #ffc107; color: #212529; }
.waypoint-icon.viewpoint[b-n2yiu9esbr] { background: #6f42c1; color: white; }
.waypoint-icon.checkpoint[b-n2yiu9esbr] { background: #0dcaf0; color: #212529; }
.waypoint-icon.fly[b-n2yiu9esbr] { background: #0d6efd; color: white; }
.waypoint-icon.drive[b-n2yiu9esbr] { background: #20c997; color: white; }
.waypoint-icon.stop[b-n2yiu9esbr] { background: #6c757d; color: white; }

.waypoint-details[b-n2yiu9esbr] {
    flex: 1;
    min-width: 0;
}

.waypoint-name[b-n2yiu9esbr] {
    margin-bottom: 0.25rem;
}

.waypoint-coords[b-n2yiu9esbr] {
    font-size: 0.75rem;
}

.waypoint-actions[b-n2yiu9esbr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waypoint-type-select[b-n2yiu9esbr] {
    min-width: 115px;
    font-size: 0.75rem;
    padding: 0.25rem 1.75rem 0.25rem 0.5rem;
}

.no-waypoints[b-n2yiu9esbr] {
    text-align: center;
    padding: 1.5rem;
    color: #6c757d;
    background: white;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

.no-waypoints i[b-n2yiu9esbr] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.no-waypoints p[b-n2yiu9esbr] {
    margin-bottom: 0.25rem;
}
/* _content/TrekConnect.Web/Components/Control/LoadingSpinner.razor.rz.scp.css */
.loading-overlay[b-gj0vlqakok] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-container[b-gj0vlqakok] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader[b-gj0vlqakok] {
    width: 48px;
    height: 48px;
    display: block;
    margin: 20px auto;
    box-sizing: border-box;
    position: relative;
}

.loader[b-gj0vlqakok]::after {
    content: '';
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    left: 0;
    bottom: 0;
    position: absolute;
    border-radius: 50% 50% 0;
    border: 15px solid #FFF;
    transform: rotate(45deg) translate(0, 0);
    animation: animMarker-b-gj0vlqakok 0.4s ease-in-out infinite alternate;
}

.loader[b-gj0vlqakok]::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 150%;
    width: 24px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    animation: animShadow-b-gj0vlqakok 0.4s ease-in-out infinite alternate;
}

@keyframes animMarker-b-gj0vlqakok {
    0% {
        transform: rotate(45deg) translate(5px, 5px);
    }
    100% {
        transform: rotate(45deg) translate(-5px, -5px);
    }
}

@keyframes animShadow-b-gj0vlqakok {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.loading-message[b-gj0vlqakok] {
    color: #FFF;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}
/* _content/TrekConnect.Web/Components/Control/MessageItem.razor.rz.scp.css */
/* MessageItem Component - Following TrekDetails design language */

.msg-item[b-naxrcc9wvh] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.msg-item-content[b-naxrcc9wvh] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.msg-item-meta[b-naxrcc9wvh] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.msg-item-meta span:first-child[b-naxrcc9wvh] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f1f1f;
}

.msg-item-date[b-naxrcc9wvh] {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

.msg-item-body[b-naxrcc9wvh] {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.msg-item-body span[b-naxrcc9wvh] {
    display: block;
    word-wrap: break-word;
}
/* _content/TrekConnect.Web/Components/Control/PersonAvatar.razor.rz.scp.css */
/* PersonAvatar Component Styles */

.person-avatar[b-ivkql66bax] {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

/* Size variants */
.person-avatar-small[b-ivkql66bax] {
    width: 32px;
    height: 32px;
}

.person-avatar-medium[b-ivkql66bax] {
    width: 44px;
    height: 44px;
}

.person-avatar-large[b-ivkql66bax] {
    width: 64px;
    height: 64px;
}
/* _content/TrekConnect.Web/Components/Control/TrekkingRouteEditor.razor.rz.scp.css */
.image-gallery-editor[b-krbm2zxcrq] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    background: #f8f9fa;
}

.image-carousel[b-krbm2zxcrq] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-card[b-krbm2zxcrq] {
    position: relative;
    width: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.gallery-image[b-krbm2zxcrq] {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.image-overlay[b-krbm2zxcrq] {
    position: absolute;
    top: 8px;
    right: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-card:hover .image-overlay[b-krbm2zxcrq] {
    opacity: 1;
}

.delete-btn[b-krbm2zxcrq] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.image-path[b-krbm2zxcrq] {
    padding: 0.5rem;
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.no-images[b-krbm2zxcrq] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-images i[b-krbm2zxcrq] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.no-images p[b-krbm2zxcrq] {
    margin: 0;
}

.add-image-section[b-krbm2zxcrq] {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

.trek-stats[b-krbm2zxcrq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
/* _content/TrekConnect.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-zycdy7zhq9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zycdy7zhq9] {
    flex: 1;
}

.sidebar[b-zycdy7zhq9] {
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%);
}

.top-row[b-zycdy7zhq9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-zycdy7zhq9]  a, .top-row[b-zycdy7zhq9]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-zycdy7zhq9]  a:hover, .top-row[b-zycdy7zhq9]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-zycdy7zhq9]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-zycdy7zhq9] {
        justify-content: space-between;
    }

    .top-row[b-zycdy7zhq9]  a, .top-row[b-zycdy7zhq9]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-zycdy7zhq9] {
        flex-direction: row;
    }

    .sidebar[b-zycdy7zhq9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-zycdy7zhq9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-zycdy7zhq9]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-zycdy7zhq9], article[b-zycdy7zhq9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-zycdy7zhq9] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-zycdy7zhq9] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TrekConnect.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-container[b-6gxp93yxdi] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.sidebar-header[b-6gxp93yxdi] {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand[b-6gxp93yxdi] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon[b-6gxp93yxdi] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.brand-icon i[b-6gxp93yxdi] {
    font-size: 1.5rem;
    color: white;
}

.brand-text[b-6gxp93yxdi] {
    display: flex;
    flex-direction: column;
}

.brand-name[b-6gxp93yxdi] {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.brand-subtitle[b-6gxp93yxdi] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile Toggle */
.navbar-toggler[b-6gxp93yxdi] {
    appearance: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    opacity: 0;
    z-index: 10;
}

.navbar-toggler-label[b-6gxp93yxdi] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.navbar-toggler-label:hover[b-6gxp93yxdi] {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked + .navbar-toggler-label[b-6gxp93yxdi] {
    background: rgba(255, 255, 255, 0.15);
}

/* Navigation */
.nav-scrollable[b-6gxp93yxdi] {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6gxp93yxdi] {
    display: flex;
}

.sidebar-nav[b-6gxp93yxdi] {
    flex: 1;
    padding: 16px 12px;
}

.nav-section[b-6gxp93yxdi] {
    margin-bottom: 24px;
}

.nav-section:last-child[b-6gxp93yxdi] {
    margin-bottom: 0;
}

.nav-section-title[b-6gxp93yxdi] {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 12px;
    margin-bottom: 8px;
}

[b-6gxp93yxdi] .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

[b-6gxp93yxdi] .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

[b-6gxp93yxdi] .nav-link i {
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
    opacity: 0.8;
}

[b-6gxp93yxdi] .nav-link:hover i {
    opacity: 1;
}

[b-6gxp93yxdi] .nav-link.active {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(27, 94, 32, 0.9) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

[b-6gxp93yxdi] .nav-link.active i {
    opacity: 1;
}

/* Footer */
.sidebar-footer[b-6gxp93yxdi] {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-content[b-6gxp93yxdi] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-content i[b-6gxp93yxdi] {
    font-size: 1rem;
}

/* Desktop styles */
@media (min-width: 641px) {
    .navbar-toggler[b-6gxp93yxdi],
    .navbar-toggler-label[b-6gxp93yxdi] {
        display: none;
    }

    .nav-scrollable[b-6gxp93yxdi] {
        display: flex;
        height: calc(100vh - 85px);
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .sidebar-header[b-6gxp93yxdi] {
        padding: 12px 16px;
    }

    .brand-text[b-6gxp93yxdi] {
        display: none;
    }

    .brand-icon[b-6gxp93yxdi] {
        width: 40px;
        height: 40px;
    }

    .brand-icon i[b-6gxp93yxdi] {
        font-size: 1.25rem;
    }
}
/* _content/TrekConnect.Web/Components/Layout/SmallDevice.razor.rz.scp.css */


#blazor-error-ui[b-f2f8m0ihgc] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-f2f8m0ihgc] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TrekConnect.Web/Components/Pages/Console/Console.razor.rz.scp.css */
/* Console Dashboard Styles */

.console-dashboard[b-c5tjfqqumq] {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header[b-c5tjfqqumq] {
    margin-bottom: 32px;
}

.dashboard-header h1[b-c5tjfqqumq] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0 0 8px 0;
}

.dashboard-subtitle[b-c5tjfqqumq] {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Loading State */
.dashboard-loading[b-c5tjfqqumq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px;
    color: #666;
    font-size: 1rem;
}

.dashboard-loading .spin[b-c5tjfqqumq] {
    animation: spin-b-c5tjfqqumq 1s linear infinite;
    font-size: 1.5rem;
    color: #1b6ec2;
}

@keyframes spin-b-c5tjfqqumq {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Stats Grid */
.stats-grid[b-c5tjfqqumq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card[b-c5tjfqqumq] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.stat-card:hover[b-c5tjfqqumq] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-card[b-c5tjfqqumq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-routes[b-c5tjfqqumq]::before { background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%); }
.stat-scheduled[b-c5tjfqqumq]::before { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.stat-people[b-c5tjfqqumq]::before { background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%); }
.stat-countries[b-c5tjfqqumq]::before { background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%); }

.stat-icon[b-c5tjfqqumq] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-routes .stat-icon[b-c5tjfqqumq] { background: rgba(27, 110, 194, 0.1); color: #1b6ec2; }
.stat-scheduled .stat-icon[b-c5tjfqqumq] { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.stat-people .stat-icon[b-c5tjfqqumq] { background: rgba(253, 126, 20, 0.1); color: #fd7e14; }
.stat-countries .stat-icon[b-c5tjfqqumq] { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }

.stat-icon i[b-c5tjfqqumq] {
    font-size: 1.5rem;
}

.stat-content[b-c5tjfqqumq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value[b-c5tjfqqumq] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1;
}

.stat-label[b-c5tjfqqumq] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-badge[b-c5tjfqqumq] {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 4px;
    width: fit-content;
}

.stat-link[b-c5tjfqqumq] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.stat-link:hover[b-c5tjfqqumq] {
    background: #1b6ec2;
    color: white;
}

/* Dashboard Sections */
.dashboard-section[b-c5tjfqqumq] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.dashboard-section h2[b-c5tjfqqumq] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* Upcoming Treks List */
.upcoming-treks-list[b-c5tjfqqumq] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upcoming-trek-item[b-c5tjfqqumq] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.upcoming-trek-item:hover[b-c5tjfqqumq] {
    background: #f0f0f0;
}

.trek-date[b-c5tjfqqumq] {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trek-day[b-c5tjfqqumq] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.trek-month[b-c5tjfqqumq] {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.trek-info[b-c5tjfqqumq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trek-info strong[b-c5tjfqqumq] {
    font-size: 0.95rem;
    color: #1f1f1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trek-info span[b-c5tjfqqumq] {
    font-size: 0.8rem;
    color: #666;
}

.trek-link[b-c5tjfqqumq] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.upcoming-trek-item:hover .trek-link[b-c5tjfqqumq] {
    background: #1b6ec2;
    color: white;
}

/* Recent People List */
.recent-people-list[b-c5tjfqqumq] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-person-item[b-c5tjfqqumq] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.recent-person-item:hover[b-c5tjfqqumq] {
    background: #f0f0f0;
}

.person-avatar[b-c5tjfqqumq] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.person-avatar img[b-c5tjfqqumq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-avatar i[b-c5tjfqqumq] {
    font-size: 1.5rem;
    color: white;
}

.person-info[b-c5tjfqqumq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.person-info strong[b-c5tjfqqumq] {
    font-size: 0.95rem;
    color: #1f1f1f;
}

.person-info span[b-c5tjfqqumq] {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.person-link[b-c5tjfqqumq] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.recent-person-item:hover .person-link[b-c5tjfqqumq] {
    background: #fd7e14;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .console-dashboard[b-c5tjfqqumq] {
        padding: 16px;
    }

    .stats-grid[b-c5tjfqqumq] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-c5tjfqqumq] {
        padding: 20px;
    }

    .stat-value[b-c5tjfqqumq] {
        font-size: 1.75rem;
    }
}
/* _content/TrekConnect.Web/Components/Pages/Console/TrekkingRouteEdit.razor.rz.scp.css */
.route-edit-page[b-ya73wvs9ca] {
    max-width: 1200px;
}

.route-header[b-ya73wvs9ca] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.route-header h4[b-ya73wvs9ca] {
    margin: 0;
}

.tab-content-area[b-ya73wvs9ca] {
    min-height: 400px;
}

.route-actions[b-ya73wvs9ca] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.action-buttons-left[b-ya73wvs9ca] {
    display: flex;
    gap: 0.5rem;
}

.spinning[b-ya73wvs9ca] {
    animation: spin-b-ya73wvs9ca 1s linear infinite;
}

@keyframes spin-b-ya73wvs9ca {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Delete Modal */
.modal-overlay[b-ya73wvs9ca] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-ya73wvs9ca] {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-ya73wvs9ca] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
}

.modal-header .warning-icon[b-ya73wvs9ca] {
    font-size: 3rem;
    color: #dc3545;
}

.modal-header h3[b-ya73wvs9ca] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body[b-ya73wvs9ca] {
    padding: 0 1.5rem 1rem;
}

.modal-body p[b-ya73wvs9ca] {
    margin: 0 0 0.5rem;
}

.modal-footer[b-ya73wvs9ca] {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    justify-content: flex-end;
}
/* _content/TrekConnect.Web/Components/Pages/Console/WikiEditor.razor.rz.scp.css */
.wiki-editor-page[b-vwr9f3jyn2] {
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-vwr9f3jyn2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.header-content h1[b-vwr9f3jyn2] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-content p[b-vwr9f3jyn2] {
    color: #6b7280;
    margin: 0;
}

/* Buttons */
.btn-primary[b-vwr9f3jyn2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1b6ec2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover:not(:disabled)[b-vwr9f3jyn2] {
    background: #1557a0;
}

.btn-primary:disabled[b-vwr9f3jyn2] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-vwr9f3jyn2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover[b-vwr9f3jyn2] {
    background: #e5e7eb;
}

.btn-danger[b-vwr9f3jyn2] {
    background: #dc2626;
    color: white;
    border: none;
}

.btn-danger:hover[b-vwr9f3jyn2] {
    background: #b91c1c;
}

.btn-back[b-vwr9f3jyn2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: #6b7280;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-back:hover[b-vwr9f3jyn2] {
    color: #374151;
}

.btn-icon[b-vwr9f3jyn2] {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover[b-vwr9f3jyn2] {
    background: #e5e7eb;
    color: #374151;
}

.btn-icon.btn-danger:hover[b-vwr9f3jyn2] {
    background: #fee2e2;
    color: #dc2626;
}

.btn-link[b-vwr9f3jyn2] {
    background: none;
    border: none;
    color: #1b6ec2;
    cursor: pointer;
    font-size: 13px;
    padding: 4px 8px;
}

.btn-link:hover[b-vwr9f3jyn2] {
    text-decoration: underline;
}

.btn-link.btn-danger[b-vwr9f3jyn2] {
    color: #dc2626;
}

/* Banners */
.error-banner[b-vwr9f3jyn2],
.success-banner[b-vwr9f3jyn2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-banner[b-vwr9f3jyn2] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.success-banner[b-vwr9f3jyn2] {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.btn-dismiss[b-vwr9f3jyn2] {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    color: inherit;
}

.btn-dismiss:hover[b-vwr9f3jyn2] {
    opacity: 1;
}

/* Loading & Empty States */
.loading-state[b-vwr9f3jyn2],
.empty-state[b-vwr9f3jyn2] {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}

.loading-state i[b-vwr9f3jyn2],
.empty-state i[b-vwr9f3jyn2] {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.empty-state h3[b-vwr9f3jyn2] {
    color: #374151;
    margin-bottom: 8px;
}

.empty-state p[b-vwr9f3jyn2] {
    margin-bottom: 20px;
}

.spin[b-vwr9f3jyn2] {
    animation: spin-b-vwr9f3jyn2 1s linear infinite;
}

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

/* Wiki Table */
.wiki-table[b-vwr9f3jyn2] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table-header[b-vwr9f3jyn2] {
    display: grid;
    grid-template-columns: 1fr 120px 80px 140px;
    gap: 16px;
    padding: 14px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-row[b-vwr9f3jyn2] {
    display: grid;
    grid-template-columns: 1fr 120px 80px 140px;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.table-row:last-child[b-vwr9f3jyn2] {
    border-bottom: none;
}

.table-row:hover[b-vwr9f3jyn2] {
    background: #f9fafb;
}

.col-name[b-vwr9f3jyn2] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #1f2937;
}

.col-name i[b-vwr9f3jyn2] {
    color: #9ca3af;
}

.col-date[b-vwr9f3jyn2] {
    color: #6b7280;
    font-size: 14px;
}

.col-versions[b-vwr9f3jyn2] {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

.col-actions[b-vwr9f3jyn2] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Edit View */
.wiki-edit[b-vwr9f3jyn2] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.edit-header[b-vwr9f3jyn2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.edit-actions[b-vwr9f3jyn2] {
    display: flex;
    gap: 12px;
}

.edit-form[b-vwr9f3jyn2] {
    padding: 24px;
}

.form-group[b-vwr9f3jyn2] {
    margin-bottom: 20px;
}

.form-group label[b-vwr9f3jyn2] {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input[b-vwr9f3jyn2],
.form-group textarea[b-vwr9f3jyn2] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus[b-vwr9f3jyn2],
.form-group textarea:focus[b-vwr9f3jyn2] {
    outline: none;
    border-color: #1b6ec2;
    box-shadow: 0 0 0 3px rgba(27, 110, 194, 0.1);
}

.form-group input:disabled[b-vwr9f3jyn2] {
    background: #f3f4f6;
    color: #6b7280;
}

.form-group textarea[b-vwr9f3jyn2] {
    font-family: 'Consolas', 'Monaco', monospace;
    line-height: 1.6;
    resize: vertical;
}

.form-group small[b-vwr9f3jyn2] {
    display: block;
    margin-top: 6px;
    color: #9ca3af;
    font-size: 13px;
}

/* Versions Panel */
.versions-panel[b-vwr9f3jyn2] {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.versions-panel h4[b-vwr9f3jyn2] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
}

.versions-list[b-vwr9f3jyn2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.version-item[b-vwr9f3jyn2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
}

.version-item.active[b-vwr9f3jyn2] {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.version-date[b-vwr9f3jyn2] {
    color: #374151;
    font-family: monospace;
}

.version-actions[b-vwr9f3jyn2] {
    display: flex;
    gap: 8px;
}

/* Modal */
.modal-overlay[b-vwr9f3jyn2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-dialog[b-vwr9f3jyn2] {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-dialog h3[b-vwr9f3jyn2] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #1f2937;
}

.modal-dialog p[b-vwr9f3jyn2] {
    color: #4b5563;
    margin-bottom: 8px;
}

.text-danger[b-vwr9f3jyn2] {
    color: #dc2626;
}

.text-muted[b-vwr9f3jyn2] {
    color: #9ca3af;
    font-size: 13px;
}

.modal-actions[b-vwr9f3jyn2] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .wiki-editor-page[b-vwr9f3jyn2] {
        padding: 16px;
    }

    .table-header[b-vwr9f3jyn2],
    .table-row[b-vwr9f3jyn2] {
        grid-template-columns: 1fr auto;
    }

    .col-date[b-vwr9f3jyn2],
    .col-versions[b-vwr9f3jyn2] {
        display: none;
    }

    .edit-header[b-vwr9f3jyn2] {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .edit-actions[b-vwr9f3jyn2] {
        justify-content: flex-end;
    }
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/AppSettings.razor.rz.scp.css */
/* Back Button */
.page-header[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-00nip1t0r1] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-00nip1t0r1] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.settings-container[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards */
.section-card[b-00nip1t0r1] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-00nip1t0r1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-00nip1t0r1] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.section-header > i[b-00nip1t0r1] {
    color: var(--text-secondary, #666);
    font-size: 1.1rem;
}

/* Toggle List */
.toggle-list[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
}

.toggle-item[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.toggle-item:hover[b-00nip1t0r1] {
    background: var(--hover-bg, #f5f5f5);
}

.toggle-info[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.toggle-info > i[b-00nip1t0r1] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    width: 28px;
    text-align: center;
}

.toggle-info > div[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.toggle-title[b-00nip1t0r1] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
}

.toggle-description[b-00nip1t0r1] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

/* Toggle Switch */
.toggle-switch[b-00nip1t0r1] {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input[b-00nip1t0r1] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-00nip1t0r1] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color, #ccc);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider[b-00nip1t0r1]::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider[b-00nip1t0r1] {
    background: var(--success-color, #28a745);
}

.toggle-switch input:checked + .toggle-slider[b-00nip1t0r1]::before {
    transform: translateX(22px);
}

/* Select List */
.select-list[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
}

.select-item[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    gap: 1rem;
}

.select-item:hover[b-00nip1t0r1] {
    background: var(--hover-bg, #f5f5f5);
}

.select-info[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.select-info > i[b-00nip1t0r1] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    width: 28px;
    text-align: center;
}

.select-info > div[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.select-title[b-00nip1t0r1] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
}

.select-description[b-00nip1t0r1] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

.select-wrapper[b-00nip1t0r1] {
    min-width: 120px;
}

/* Form Control */
.form-control[b-00nip1t0r1] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.form-control:focus[b-00nip1t0r1] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

/* Storage Info */
.storage-info[b-00nip1t0r1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color, #e5e5e5);
}

.storage-row[b-00nip1t0r1] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.storage-label[b-00nip1t0r1] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

.storage-value[b-00nip1t0r1] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

/* Buttons */
.btn[b-00nip1t0r1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-00nip1t0r1] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover[b-00nip1t0r1] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-00nip1t0r1] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-00nip1t0r1] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-00nip1t0r1] {
    background: var(--secondary-hover, #d3d8de);
}

.btn-sm[b-00nip1t0r1] {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
}

/* Form Actions */
.form-actions[b-00nip1t0r1] {
    display: flex;
    gap: 0.75rem;
}

.form-actions .btn[b-00nip1t0r1] {
    flex: 1;
}

/* Alerts */
.alert[b-00nip1t0r1] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-00nip1t0r1] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-00nip1t0r1] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Explore.razor.rz.scp.css */
/* Explore Page Styles */

.content-area.explore-content[b-e9vllezgaa] {
    padding: 0;
    background: #f8fafc;
}

/* Hero Section */
.explore-hero[b-e9vllezgaa] {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.explore-hero-image[b-e9vllezgaa] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-hero-overlay[b-e9vllezgaa] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.explore-hero-title[b-e9vllezgaa] {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.explore-hero-subtitle[b-e9vllezgaa] {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Content */
.explore-page[b-e9vllezgaa] {
    padding: 16px 20px;
    padding-bottom: 100px;
}

/* Search */
.explore-search[b-e9vllezgaa] {
    margin-top: -24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.search-input-wrapper[b-e9vllezgaa] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i.bi-search[b-e9vllezgaa] {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 16px;
    z-index: 1;
}

.search-input-wrapper .form-control[b-e9vllezgaa] {
    padding: 14px 44px 14px 46px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.search-input-wrapper .form-control:focus[b-e9vllezgaa] {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    outline: none;
}

.search-clear[b-e9vllezgaa] {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
}

.search-clear:hover[b-e9vllezgaa] {
    color: #6b7280;
}

/* Filters */
.explore-filters[b-e9vllezgaa] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.explore-filters[b-e9vllezgaa]::-webkit-scrollbar {
    display: none;
}

.filter-pill[b-e9vllezgaa] {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover[b-e9vllezgaa] {
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-pill.active[b-e9vllezgaa] {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Results Info */
.explore-results-info[b-e9vllezgaa] {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* Empty State */
.explore-empty[b-e9vllezgaa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.explore-empty i[b-e9vllezgaa] {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.explore-empty h5[b-e9vllezgaa] {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.explore-empty p[b-e9vllezgaa] {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px 0;
}

.btn-clear-filters[b-e9vllezgaa] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-filters:hover[b-e9vllezgaa] {
    background: #e5e7eb;
}

/* Trek Cards */
.explore-list[b-e9vllezgaa] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.explore-card[b-e9vllezgaa] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.explore-card:hover[b-e9vllezgaa] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.explore-card-image[b-e9vllezgaa] {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.explore-card-image img[b-e9vllezgaa] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.explore-card-badge[b-e9vllezgaa] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
    text-transform: capitalize;
}

.explore-card-content[b-e9vllezgaa] {
    flex: 1;
    min-width: 0;
}

.explore-card-title[b-e9vllezgaa] {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.explore-card-desc[b-e9vllezgaa] {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.explore-card-meta[b-e9vllezgaa] {
    display: flex;
    gap: 12px;
}

.meta-item[b-e9vllezgaa] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9ca3af;
}

.meta-item i[b-e9vllezgaa] {
    font-size: 12px;
}

.meta-item.difficulty-easy[b-e9vllezgaa] { color: #10b981; }
.meta-item.difficulty-moderate[b-e9vllezgaa] { color: #f59e0b; }
.meta-item.difficulty-challenging[b-e9vllezgaa] { color: #f97316; }
.meta-item.difficulty-very-hard[b-e9vllezgaa] { color: #ef4444; }

.explore-card-arrow[b-e9vllezgaa] {
    color: #d1d5db;
    font-size: 16px;
    flex-shrink: 0;
}

.explore-card:hover .explore-card-arrow[b-e9vllezgaa] {
    color: #9ca3af;
}

/* Skeleton Loading */
.explore-skeleton[b-e9vllezgaa] {
    padding: 20px;
}

.skeleton-hero[b-e9vllezgaa] {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    margin-bottom: 16px;
}

.skeleton-search[b-e9vllezgaa] {
    height: 52px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    border-radius: 14px;
    margin-bottom: 16px;
}

.skeleton-filters[b-e9vllezgaa] {
    height: 36px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    border-radius: 20px;
    width: 80%;
    margin-bottom: 16px;
}

.skeleton-card[b-e9vllezgaa] {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
}

.skeleton-image[b-e9vllezgaa] {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    border-radius: 10px;
    flex-shrink: 0;
}

.skeleton-content[b-e9vllezgaa] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-title[b-e9vllezgaa] {
    height: 20px;
    width: 70%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text[b-e9vllezgaa] {
    height: 14px;
    width: 90%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-e9vllezgaa 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer-b-e9vllezgaa {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Help.razor.rz.scp.css */
/* Back Button */
.page-header[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-f0ecwb8ya7] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-f0ecwb8ya7] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.help-container[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards */
.section-card[b-f0ecwb8ya7] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-f0ecwb8ya7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-f0ecwb8ya7] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.faq-count[b-f0ecwb8ya7] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
    background: var(--badge-bg, #f0f0f0);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

/* FAQ List */
.faq-list[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item[b-f0ecwb8ya7] {
    border: 1px solid var(--border-color, #e5e5e5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover[b-f0ecwb8ya7] {
    border-color: var(--primary-color, #4a90d9);
}

.faq-item.expanded[b-f0ecwb8ya7] {
    border-color: var(--primary-color, #4a90d9);
    background: rgba(74, 144, 217, 0.03);
}

.faq-header[b-f0ecwb8ya7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
}

.faq-question[b-f0ecwb8ya7] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    flex: 1;
    padding-right: 0.5rem;
}

.faq-header > i[b-f0ecwb8ya7] {
    color: var(--text-secondary, #666);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-answer[b-f0ecwb8ya7] {
    margin: 0;
    padding: 0 0.75rem 0.75rem 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}

/* Guide List */
.guide-list[b-f0ecwb8ya7] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guide-item[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-item:hover[b-f0ecwb8ya7] {
    background: var(--hover-bg, #f5f5f5);
}

.guide-info[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-info > i[b-f0ecwb8ya7] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    width: 28px;
    text-align: center;
}

.guide-info > span[b-f0ecwb8ya7] {
    font-size: 0.9rem;
    color: var(--text-primary, #1a1a1a);
}

.guide-item > i[b-f0ecwb8ya7] {
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
}

/* Contact Options */
.contact-options[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.contact-card.clickable[b-f0ecwb8ya7] {
    cursor: pointer;
}

.contact-card.clickable:hover[b-f0ecwb8ya7] {
    background: var(--hover-bg, #e9ecef);
}

.contact-icon[b-f0ecwb8ya7] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i[b-f0ecwb8ya7] {
    font-size: 1.25rem;
    color: white;
}

.contact-icon.email[b-f0ecwb8ya7] {
    background: linear-gradient(135deg, #4a90d9, #357abd);
}

.contact-icon.phone[b-f0ecwb8ya7] {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.contact-icon.chat[b-f0ecwb8ya7] {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.contact-details[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.contact-title[b-f0ecwb8ya7] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.contact-value[b-f0ecwb8ya7] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

.contact-note[b-f0ecwb8ya7] {
    font-size: 0.75rem;
    color: var(--text-muted, #999);
}

.contact-action[b-f0ecwb8ya7] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color, #4a90d9);
}

.contact-card > i[b-f0ecwb8ya7] {
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
}

/* Report Form */
.report-form[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group[b-f0ecwb8ya7] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label[b-f0ecwb8ya7] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
}

.form-control[b-f0ecwb8ya7] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-f0ecwb8ya7] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

select.form-control[b-f0ecwb8ya7] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

textarea.form-control[b-f0ecwb8ya7] {
    resize: vertical;
    min-height: 100px;
}

/* Alerts */
.alert[b-f0ecwb8ya7] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-f0ecwb8ya7] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-f0ecwb8ya7] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Buttons */
.btn[b-f0ecwb8ya7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-f0ecwb8ya7] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover[b-f0ecwb8ya7] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-f0ecwb8ya7] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Resource List */
.resource-list[b-f0ecwb8ya7] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-item[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resource-item:hover[b-f0ecwb8ya7] {
    background: var(--hover-bg, #f5f5f5);
}

.resource-info[b-f0ecwb8ya7] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-info > i[b-f0ecwb8ya7] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    width: 28px;
    text-align: center;
}

.resource-info > span[b-f0ecwb8ya7] {
    font-size: 0.9rem;
    color: var(--text-primary, #1a1a1a);
}

.resource-item > i[b-f0ecwb8ya7] {
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/IncludedNotIncluded.razor.rz.scp.css */
/* Page Header */
.page-header[b-k00bms08wx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-k00bms08wx] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-k00bms08wx] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.included-container[b-k00bms08wx] {
    padding: 0 16px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text[b-k00bms08wx] {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1b6ec2;
}

.section-card[b-k00bms08wx] {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header[b-k00bms08wx] {
    margin-bottom: 16px;
}

.section-header h2[b-k00bms08wx] {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 8px 0 4px;
}

.section-subtitle[b-k00bms08wx] {
    font-size: 13px;
    color: #9ca3af;
}

.header-icon[b-k00bms08wx] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.header-icon.included[b-k00bms08wx] {
    background: #dcfce7;
    color: #16a34a;
}

.header-icon.excluded[b-k00bms08wx] {
    background: #fee2e2;
    color: #dc2626;
}

.header-icon.clarify[b-k00bms08wx] {
    background: #fef3c7;
    color: #d97706;
}

.category-list[b-k00bms08wx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item[b-k00bms08wx] {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.category-header[b-k00bms08wx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.category-header:hover[b-k00bms08wx] {
    background: #f3f4f6;
}

.category-header i:first-child[b-k00bms08wx] {
    font-size: 18px;
    color: #6b7280;
    width: 24px;
    text-align: center;
}

.category-header span[b-k00bms08wx] {
    flex: 1;
    font-weight: 500;
    color: #374151;
    font-size: 15px;
}

.toggle-icon[b-k00bms08wx] {
    color: #9ca3af;
    font-size: 14px;
}

.item-list[b-k00bms08wx] {
    list-style: none;
    padding: 0 16px 16px 52px;
    margin: 0;
}

.item-list li[b-k00bms08wx] {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    border-bottom: 1px solid #e5e7eb;
}

.item-list li:last-child[b-k00bms08wx] {
    border-bottom: none;
}

.item-list li[b-k00bms08wx]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}

.item-list.excluded li[b-k00bms08wx]::before {
    background: #dc2626;
}

.info-note[b-k00bms08wx] {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    margin: 8px 16px 16px 52px;
    background: #eff6ff;
    border-radius: 8px;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.5;
}

.info-note i[b-k00bms08wx] {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Clarify Section */
.clarify-intro[b-k00bms08wx] {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.clarify-list[b-k00bms08wx] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clarify-category[b-k00bms08wx] {
    background: #fffbeb;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #fde68a;
}

.clarify-category h4[b-k00bms08wx] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 12px;
}

.clarify-category h4 i[b-k00bms08wx] {
    font-size: 16px;
}

.clarify-category ul[b-k00bms08wx] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clarify-category li[b-k00bms08wx] {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 14px;
    color: #78350f;
    line-height: 1.5;
}

.clarify-category li[b-k00bms08wx]::before {
    content: "\F26A"; /* bi-square */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 14px;
    color: #d97706;
}

/* Included Section specific */
.included-section .section-header[b-k00bms08wx] {
    border-bottom: 2px solid #dcfce7;
    padding-bottom: 16px;
}

/* Excluded Section specific */
.excluded-section .section-header[b-k00bms08wx] {
    border-bottom: 2px solid #fee2e2;
    padding-bottom: 16px;
}

/* Clarify Section specific */
.clarify-section .section-header[b-k00bms08wx] {
    border-bottom: 2px solid #fef3c7;
    padding-bottom: 16px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .included-container[b-k00bms08wx] {
        padding: 0 12px 20px;
    }

    .section-card[b-k00bms08wx] {
        padding: 16px;
        border-radius: 12px;
    }

    .section-header h2[b-k00bms08wx] {
        font-size: 18px;
    }

    .category-header[b-k00bms08wx] {
        padding: 12px 14px;
    }

    .category-header span[b-k00bms08wx] {
        font-size: 14px;
    }

    .item-list[b-k00bms08wx] {
        padding-left: 44px;
    }

    .item-list li[b-k00bms08wx] {
        font-size: 13px;
    }

    .info-note[b-k00bms08wx] {
        margin-left: 44px;
        font-size: 12px;
    }

    .clarify-category[b-k00bms08wx] {
        padding: 14px;
    }

    .clarify-category li[b-k00bms08wx] {
        font-size: 13px;
    }
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/KitList.razor.rz.scp.css */
/* Back Button */
.page-header[b-4x0orfpj8k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-4x0orfpj8k] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-4x0orfpj8k] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.kit-list-container[b-4x0orfpj8k] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards - matches PaymentMethods */
.section-card[b-4x0orfpj8k] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-4x0orfpj8k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-4x0orfpj8k] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.item-count[b-4x0orfpj8k] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
    background: var(--badge-bg, #f0f0f0);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

/* Checklist */
.checklist[b-4x0orfpj8k] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist-item[b-4x0orfpj8k] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checklist-item:hover[b-4x0orfpj8k] {
    background: var(--hover-bg, #f5f5f5);
}

.checklist-item label[b-4x0orfpj8k] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 1;
}

.checklist-item input[type="checkbox"][b-4x0orfpj8k] {
    display: none;
}

.checkmark[b-4x0orfpj8k] {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color, #d0d0d0);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checklist-item input[type="checkbox"]:checked + .checkmark[b-4x0orfpj8k] {
    background: var(--success-color, #28a745);
    border-color: var(--success-color, #28a745);
}

.checklist-item input[type="checkbox"]:checked + .checkmark[b-4x0orfpj8k]::after {
    content: '\2713';
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
}

.item-name[b-4x0orfpj8k] {
    font-size: 0.9rem;
    color: var(--text-primary, #1a1a1a);
    transition: all 0.2s ease;
}

.checklist-item.checked .item-name[b-4x0orfpj8k] {
    color: var(--text-secondary, #888);
    text-decoration: line-through;
}

/* Icon Buttons */
.btn-icon[b-4x0orfpj8k] {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #666);
    transition: all 0.2s ease;
}

.btn-icon:hover[b-4x0orfpj8k] {
    background: var(--hover-bg, #e9ecef);
}

.btn-icon.btn-danger:hover[b-4x0orfpj8k] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
}

/* Add Item Card */
.add-item-card[b-4x0orfpj8k] {
    padding: 1rem;
}

/* Form Elements */
.form-group[b-4x0orfpj8k] {
    margin-bottom: 0.75rem;
}

.form-group label[b-4x0orfpj8k] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    margin-bottom: 0.4rem;
}

.form-control[b-4x0orfpj8k] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-4x0orfpj8k] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

/* Buttons */
.btn[b-4x0orfpj8k] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-4x0orfpj8k] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover[b-4x0orfpj8k] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-secondary[b-4x0orfpj8k] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-4x0orfpj8k] {
    background: var(--secondary-hover, #d3d8de);
}

/* Add Item Button */
.btn-add-item[b-4x0orfpj8k] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--border-color, #d0d0d0);
    background: transparent;
    border-radius: 10px;
    color: var(--primary-color, #4a90d9);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-item:hover[b-4x0orfpj8k] {
    border-color: var(--primary-color, #4a90d9);
    background: rgba(74, 144, 217, 0.05);
}

.btn-add-item i[b-4x0orfpj8k] {
    font-size: 1.1rem;
}

/* Form Actions */
.form-actions[b-4x0orfpj8k] {
    display: flex;
    gap: 0.75rem;
}

.form-actions .btn[b-4x0orfpj8k] {
    flex: 1;
}

/* Progress Summary */
.progress-summary[b-4x0orfpj8k] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-text[b-4x0orfpj8k] {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    margin-bottom: 0.5rem;
}

.progress-bar[b-4x0orfpj8k] {
    height: 8px;
    background: var(--border-color, #e5e5e5);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill[b-4x0orfpj8k] {
    height: 100%;
    background: var(--success-color, #28a745);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Alerts */
.alert[b-4x0orfpj8k] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-4x0orfpj8k] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-4x0orfpj8k] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Loading and Error States */
.loading-state[b-4x0orfpj8k],
.error-state[b-4x0orfpj8k] {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-state p[b-4x0orfpj8k],
.error-state p[b-4x0orfpj8k] {
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

/* Disabled button state */
.btn-primary:disabled[b-4x0orfpj8k] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Legal.razor.rz.scp.css */
/* Back Button */
.page-header[b-suor7ucryp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-suor7ucryp] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-suor7ucryp] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.legal-container[b-suor7ucryp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards */
.section-card[b-suor7ucryp] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-suor7ucryp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-suor7ucryp] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

/* Document List */
.document-list[b-suor7ucryp] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.document-item[b-suor7ucryp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.document-item:hover[b-suor7ucryp] {
    background: var(--hover-bg, #f5f5f5);
}

.document-item.active[b-suor7ucryp] {
    background: rgba(74, 144, 217, 0.1);
}

.document-item.active .document-title[b-suor7ucryp] {
    color: var(--primary-color, #4a90d9);
}

.document-info[b-suor7ucryp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.document-info > i[b-suor7ucryp] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    width: 28px;
    text-align: center;
}

.document-info > div[b-suor7ucryp] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.document-title[b-suor7ucryp] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
}

.document-date[b-suor7ucryp] {
    font-size: 0.75rem;
    color: var(--text-secondary, #888);
}

.document-item > i[b-suor7ucryp] {
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
}

/* Document Viewer */
.document-viewer[b-suor7ucryp] {
    max-height: 60vh;
    overflow-y: auto;
}

.document-content[b-suor7ucryp] {
    padding: 0.5rem;
}

.content-section[b-suor7ucryp] {
    margin-bottom: 1rem;
}

.content-section:last-child[b-suor7ucryp] {
    margin-bottom: 0;
}

.content-section h5[b-suor7ucryp] {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.content-section p[b-suor7ucryp] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}

/* Close Button */
.btn-close[b-suor7ucryp] {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--hover-bg, #e9ecef);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #666);
    transition: all 0.2s ease;
}

.btn-close:hover[b-suor7ucryp] {
    background: var(--secondary-hover, #d3d8de);
    color: var(--text-primary, #1a1a1a);
}

/* Styled Lists */
.styled-list[b-suor7ucryp] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.styled-list li[b-suor7ucryp] {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    border-bottom: 1px solid var(--border-color, #f0f0f0);
}

.styled-list li:last-child[b-suor7ucryp] {
    border-bottom: none;
}

/* Refund List */
.refund-list[b-suor7ucryp] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.refund-list li[b-suor7ucryp] {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.refund-list li:last-child[b-suor7ucryp] {
    margin-bottom: 0;
}

.refund-time[b-suor7ucryp] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

.refund-amount[b-suor7ucryp] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success-color, #28a745);
}

.refund-list li:last-child .refund-amount[b-suor7ucryp] {
    color: var(--danger-color, #dc3545);
}

/* Copyright Text */
.copyright-text[b-suor7ucryp] {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

.copyright-text:last-child[b-suor7ucryp] {
    margin-bottom: 0;
}

/* Contact Info */
.contact-info[b-suor7ucryp] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-row[b-suor7ucryp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

.contact-row i[b-suor7ucryp] {
    color: var(--primary-color, #4a90d9);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Me.razor.rz.scp.css */
/* Me Page Styles */

.content-area.me-content[b-c9rq04kd4a] {
    padding: 0;
    background: #f8fafc;
}

/* Page Layout */
.me-page[b-c9rq04kd4a] {
    padding: 20px 20px 100px 20px;
}

/* Hero Section */
.me-hero[b-c9rq04kd4a] {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.me-hero-image[b-c9rq04kd4a] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.me-hero-gradient[b-c9rq04kd4a] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}

.me-hero-overlay[b-c9rq04kd4a] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Profile Row - Avatar + QR Code side by side */
.me-profile-row[b-c9rq04kd4a] {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: -80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.me-avatar-card[b-c9rq04kd4a] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.me-avatar[b-c9rq04kd4a] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.me-avatar img[b-c9rq04kd4a] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.me-avatar i[b-c9rq04kd4a] {
    font-size: 36px;
    color: white;
}


/* Profile Info */
.me-info[b-c9rq04kd4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    margin-bottom: 24px;
}

.me-name[b-c9rq04kd4a] {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.me-email[b-c9rq04kd4a] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.me-note[b-c9rq04kd4a] {
    font-size: 12px;
    color: #f59e0b;
    margin-top: 4px;
}

/* Skeleton Loading */
.me-hero-skeleton[b-c9rq04kd4a] {
    position: relative;
}

.skeleton-hero[b-c9rq04kd4a] {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-c9rq04kd4a 1.5s infinite;
}

.skeleton-avatar-wrap[b-c9rq04kd4a] {
    display: flex;
    justify-content: center;
    margin-top: -48px;
    position: relative;
    z-index: 10;
}

.skeleton-avatar[b-c9rq04kd4a] {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-c9rq04kd4a 1.5s infinite;
    border: 4px solid #f8fafc;
}

.me-skeleton-content[b-c9rq04kd4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.skeleton-name[b-c9rq04kd4a] {
    width: 150px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-c9rq04kd4a 1.5s infinite;
    border-radius: 4px;
}

.skeleton-email[b-c9rq04kd4a] {
    width: 200px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-c9rq04kd4a 1.5s infinite;
    border-radius: 4px;
}

.skeleton-menu[b-c9rq04kd4a] {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-menu-item[b-c9rq04kd4a] {
    height: 64px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-c9rq04kd4a 1.5s infinite;
    border-radius: 12px;
}

@keyframes shimmer-b-c9rq04kd4a {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Menu Sections */
.me-menu-section[b-c9rq04kd4a] {
    margin-bottom: 24px;
}

.me-section-title[b-c9rq04kd4a] {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 4px;
}

.me-menu[b-c9rq04kd4a] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.me-menu-item[b-c9rq04kd4a] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
}

.me-menu-item:last-child[b-c9rq04kd4a] {
    border-bottom: none;
}

.me-menu-item:hover[b-c9rq04kd4a] {
    background: #f9fafb;
}

.me-menu-item:active[b-c9rq04kd4a] {
    background: #f3f4f6;
}

.me-menu-icon[b-c9rq04kd4a] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.me-menu-icon i[b-c9rq04kd4a] {
    font-size: 18px;
    color: #6b7280;
}

.me-menu-content[b-c9rq04kd4a] {
    flex: 1;
    min-width: 0;
}

.me-menu-label[b-c9rq04kd4a] {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.me-menu-desc[b-c9rq04kd4a] {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.me-menu-arrow[b-c9rq04kd4a] {
    color: #d1d5db;
    font-size: 14px;
    flex-shrink: 0;
}

/* Sign Out */
.me-signout[b-c9rq04kd4a] {
    margin-top: 8px;
}

.me-signout-btn[b-c9rq04kd4a] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #fef2f2;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #dc2626;
    text-decoration: none;
    transition: all 0.2s ease;
}

.me-signout-btn:hover[b-c9rq04kd4a] {
    background: #fee2e2;
}

.me-signout-btn i[b-c9rq04kd4a] {
    font-size: 18px;
}

/* QR Code Card (in profile row) */
.me-qrcode-card[b-c9rq04kd4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.me-qrcode-image[b-c9rq04kd4a] {
    width: 120px;
    height: 120px;
    border-radius: 8px;
}


/* Login Prompt */
.me-login-prompt[b-c9rq04kd4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.me-login-prompt i[b-c9rq04kd4a] {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.me-login-prompt h4[b-c9rq04kd4a] {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.me-login-prompt p[b-c9rq04kd4a] {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 24px 0;
}

.btn-login[b-c9rq04kd4a] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #3b82f6;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-login:hover[b-c9rq04kd4a] {
    background: #2563eb;
    transform: translateY(-1px);
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Messages.razor.rz.scp.css */
/* Messages Page Styles */

.content-area.msgs-content[b-hra2d1utiy] {
    padding: 0;
}

/* Page Layout */
.msgs-page[b-hra2d1utiy] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: #f5f5f5;
}

/* Hero Section with Trek Image */
.msgs-hero[b-hra2d1utiy] {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.msgs-hero-image[b-hra2d1utiy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.msgs-hero-overlay[b-hra2d1utiy] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.msgs-hero-content[b-hra2d1utiy] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msgs-hero-title[b-hra2d1utiy] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.msgs-hero-meta[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.msgs-hero-date[b-hra2d1utiy] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.msgs-hero-date i[b-hra2d1utiy] {
    font-size: 0.9rem;
}

.msgs-switch-btn[b-hra2d1utiy] {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.msgs-switch-btn:hover[b-hra2d1utiy] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Trek Selection Modal */
.trek-modal-backdrop[b-hra2d1utiy] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.trek-modal[b-hra2d1utiy] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.2s ease-out;
}

@@keyframes modalSlideIn {
    from[b-hra2d1utiy] {
        opacity: 0;
        transform: translateY(20px);
    }
    to[b-hra2d1utiy] {
        opacity: 1;
        transform: translateY(0);
    }
}

.trek-modal-header[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.trek-modal-header h3[b-hra2d1utiy] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.trek-modal-close[b-hra2d1utiy] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.trek-modal-close:hover[b-hra2d1utiy] {
    background: #f0f0f0;
    color: #333;
}

.trek-modal-body[b-hra2d1utiy] {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.trek-modal-item[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.trek-modal-item:hover[b-hra2d1utiy] {
    background: #f5f5f5;
}

.trek-modal-item.selected[b-hra2d1utiy] {
    background: #e8f4fd;
}

.trek-modal-item-image[b-hra2d1utiy] {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.trek-modal-item-image img[b-hra2d1utiy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trek-modal-item-info[b-hra2d1utiy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trek-modal-item-name[b-hra2d1utiy] {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trek-modal-item-date[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #888;
}

.trek-modal-item-date i[b-hra2d1utiy] {
    font-size: 0.75rem;
}

.trek-modal-item-check[b-hra2d1utiy] {
    color: #1b6ec2;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Message Composer - Overlays bottom of hero */
.msgs-composer[b-hra2d1utiy] {
    margin: -9px 7px 0 7px;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 28px;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.msgs-composer .input-group[b-hra2d1utiy] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.msgs-composer .form-control[b-hra2d1utiy] {
    flex: 1;
    padding: 12px 10px;
    border: none;
    border-radius: 24px;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.msgs-composer .form-control:focus[b-hra2d1utiy],
.msgs-composer .form-control:focus-visible[b-hra2d1utiy] {
    outline: none;
    border: none;
    box-shadow: none;
}

.msgs-composer .btn[b-hra2d1utiy] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.msgs-composer .btn-primary[b-hra2d1utiy] {
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(27, 110, 194, 0.3);
}

.msgs-composer .btn-primary:hover:not(:disabled)[b-hra2d1utiy] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.4);
}

.msgs-composer .btn-primary:disabled[b-hra2d1utiy] {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* Trek Selector Dropdown */
.msgs-trek-picker[b-hra2d1utiy] {
    padding: 16px;
    background: white;
    border-bottom: 1px solid #e8e8e8;
    margin-top: 16px;
}

.msgs-trek-picker--initial[b-hra2d1utiy] {
    margin-top: 0;
    border-bottom: none;
    padding: 24px 16px;
}

.msgs-trek-picker label[b-hra2d1utiy] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.msgs-trek-picker select.form-control[b-hra2d1utiy] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.msgs-trek-picker select.form-control:focus[b-hra2d1utiy] {
    outline: none;
    border-color: #1b6ec2;
}

/* Message List Container (scrollable) */
.msgs-list[b-hra2d1utiy] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    margin-top: -10px;
}

.msgs-list ul[b-hra2d1utiy] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msgs-list li[b-hra2d1utiy] {
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.msgs-list li:hover[b-hra2d1utiy] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.msgs-list-item--mine[b-hra2d1utiy] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5faff 100%);
    border-left: 3px solid #1b6ec2;
    transition: border-color 0.25s ease;
}

/* Swipe to delete */
.msgs-item-wrapper[b-hra2d1utiy] {
    position: relative;
    overflow: hidden;
}

.msgs-item-content[b-hra2d1utiy] {
    transition: transform 0.25s ease;
}

.msgs-delete-btn[b-hra2d1utiy] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    overflow: hidden;
    transition: width 0.25s ease;
    z-index: 10;
}

.msgs-delete-btn i[b-hra2d1utiy] {
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.msgs-delete-btn:hover i[b-hra2d1utiy] {
    transform: scale(1.15);
}

/* Deletable items - transition border to red when open */
.msgs-list-item--mine.msgs-list-item--deletable[b-hra2d1utiy] {
    border-left-color: #1b6ec2;
}

.msgs-list-item--mine.msgs-list-item--deletable.msgs-delete-open[b-hra2d1utiy] {
    border-left-color: #dc2626;
}

/* Show delete button when message is swiped open */
.msgs-list-item--deletable.msgs-delete-open .msgs-delete-btn[b-hra2d1utiy] {
    width: 28px;
}

.msgs-list-item--deletable.msgs-delete-open .msgs-delete-btn i[b-hra2d1utiy] {
    opacity: 1;
    transition-delay: 0.1s;
}

.msgs-list-item--deletable.msgs-delete-open .msgs-item-content[b-hra2d1utiy] {
    transform: translateX(28px);
}

/* Loading State */
.msgs-loading[b-hra2d1utiy] {
    flex: 1;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 16px;
}

/* Empty States */
.msgs-empty[b-hra2d1utiy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    margin-top: 16px;
}

.msgs-no-treks[b-hra2d1utiy],
.msgs-login-prompt[b-hra2d1utiy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.msgs-empty i[b-hra2d1utiy],
.msgs-no-treks i[b-hra2d1utiy],
.msgs-login-prompt i[b-hra2d1utiy] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.msgs-empty h5[b-hra2d1utiy],
.msgs-no-treks h5[b-hra2d1utiy],
.msgs-login-prompt h4[b-hra2d1utiy] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 0.75rem 0;
}

.msgs-empty p[b-hra2d1utiy],
.msgs-no-treks p[b-hra2d1utiy],
.msgs-login-prompt p[b-hra2d1utiy] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 280px;
}

.msgs-login-prompt .btn[b-hra2d1utiy] {
    margin-top: 1.5rem;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
    text-decoration: none;
}

.msgs-login-prompt .btn:hover[b-hra2d1utiy] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 110, 194, 0.4);
}

/* Skeleton loading styles */
.msgs-skeleton[b-hra2d1utiy] {
    padding: 1rem;
}

.skeleton-hero[b-hra2d1utiy] {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-hra2d1utiy 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.skeleton-composer[b-hra2d1utiy] {
    height: 50px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-hra2d1utiy 1.5s infinite;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.skeleton-messages[b-hra2d1utiy] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-message[b-hra2d1utiy] {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 8px;
}

.skeleton-avatar[b-hra2d1utiy] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-hra2d1utiy 1.5s infinite;
    flex-shrink: 0;
}

.skeleton-content[b-hra2d1utiy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-name[b-hra2d1utiy] {
    height: 16px;
    width: 120px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-hra2d1utiy 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text[b-hra2d1utiy] {
    height: 14px;
    width: 80%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-hra2d1utiy 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer-b-hra2d1utiy {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Attach Button */
.msgs-composer .msgs-attach-btn[b-hra2d1utiy] {
    background: transparent !important;
    color: #666 !important;
    border: none !important;
    width: 26px !important;
    min-width: 26px !important;
    padding: 0 !important;
}

.msgs-composer .msgs-attach-btn:hover[b-hra2d1utiy] {
    background: transparent !important;
    color: #1b6ec2 !important;
    transform: scale(1.1);
}

/* Attach Modal */
.attach-modal[b-hra2d1utiy] {
    max-width: 360px;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Attach Header */
.attach-header[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.attach-header span[b-hra2d1utiy] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.attach-close-btn[b-hra2d1utiy] {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.attach-close-btn:hover[b-hra2d1utiy] {
    background: #f0f0f0;
    color: #333;
}

.attach-close-btn i[b-hra2d1utiy] {
    font-size: 1rem;
}

/* SOS Button */
.attach-sos[b-hra2d1utiy] {
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.attach-sos-btn[b-hra2d1utiy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: #fee2e2;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: #dc2626;
}

.attach-sos-btn:hover[b-hra2d1utiy] {
    background: #fecaca;
}

.attach-sos-btn i[b-hra2d1utiy] {
    font-size: 1.1rem;
}

/* Attach Options Grid */
.attach-options[b-hra2d1utiy] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.attach-option[b-hra2d1utiy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border: none;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attach-option:hover[b-hra2d1utiy] {
    background: #e8f4fd;
    transform: translateY(-2px);
}

.attach-option:active[b-hra2d1utiy] {
    transform: translateY(0);
}

.attach-option i[b-hra2d1utiy] {
    font-size: 1.3rem;
    color: #1b6ec2;
}

.attach-option span[b-hra2d1utiy] {
    font-size: 0.7rem;
    font-weight: 500;
    color: #666;
}

/* Preset Messages */
.attach-presets[b-hra2d1utiy] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.attach-presets-list[b-hra2d1utiy] {
    overflow-y: auto;
    flex: 1;
    padding: 8px 16px 16px;
}

.attach-preset-group[b-hra2d1utiy] {
    margin-bottom: 16px;
}

.attach-preset-group:last-child[b-hra2d1utiy] {
    margin-bottom: 0;
}

.attach-preset-group h6[b-hra2d1utiy] {
    margin: 0 0 8px 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attach-preset-btn[b-hra2d1utiy] {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
    background: white;
    border-radius: 10px;
    text-align: left;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.attach-preset-btn:hover[b-hra2d1utiy] {
    background: #f5f5f5;
    border-color: #1b6ec2;
    color: #1b6ec2;
}

.attach-preset-btn:last-child[b-hra2d1utiy] {
    margin-bottom: 0;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/MyTreks.razor.rz.scp.css */
/* MyTreks Page Styles */

.content-area.mytreks-content[b-62u1mm55et] {
    padding: 0;
}

/* Page Layout */
.mytreks-page[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background: #f5f5f5;
}

/* Hero Section with Trek Image */
.mytreks-hero[b-62u1mm55et] {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.mytreks-hero-image[b-62u1mm55et] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mytreks-hero-overlay[b-62u1mm55et] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.mytreks-hero-content[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mytreks-hero-title[b-62u1mm55et] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.mytreks-hero-meta[b-62u1mm55et] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mytreks-hero-date[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mytreks-hero-date i[b-62u1mm55et] {
    font-size: 0.9rem;
}

.mytreks-switch-btn[b-62u1mm55et] {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mytreks-switch-btn:hover[b-62u1mm55et] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Trek Selection Modal */
.trek-modal-backdrop[b-62u1mm55et] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.trek-modal[b-62u1mm55et] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.2s ease-out;
}

@@keyframes modalSlideIn {
    from[b-62u1mm55et] {
        opacity: 0;
        transform: translateY(20px);
    }
    to[b-62u1mm55et] {
        opacity: 1;
        transform: translateY(0);
    }
}

.trek-modal-header[b-62u1mm55et] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.trek-modal-header h3[b-62u1mm55et] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.trek-modal-close[b-62u1mm55et] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.trek-modal-close:hover[b-62u1mm55et] {
    background: #f0f0f0;
    color: #333;
}

.trek-modal-body[b-62u1mm55et] {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.trek-modal-item[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.trek-modal-item:hover[b-62u1mm55et] {
    background: #f5f5f5;
}

.trek-modal-item.selected[b-62u1mm55et] {
    background: #e8f4fd;
}

.trek-modal-item-image[b-62u1mm55et] {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.trek-modal-item-image img[b-62u1mm55et] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trek-modal-item-info[b-62u1mm55et] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trek-modal-item-name[b-62u1mm55et] {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trek-modal-item-date[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #888;
}

.trek-modal-item-date i[b-62u1mm55et] {
    font-size: 0.75rem;
}

.trek-modal-item-check[b-62u1mm55et] {
    color: #1b6ec2;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Status Bar */
.mytreks-status-bar[b-62u1mm55et] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid #e8e8e8;
}

.mytreks-status[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mytreks-status.status-upcoming[b-62u1mm55et] {
    background: #e3f2fd;
    color: #1565c0;
}

.mytreks-status.status-active[b-62u1mm55et] {
    background: #e8f5e9;
    color: #2e7d32;
}

.mytreks-status.status-completed[b-62u1mm55et] {
    background: #f3e5f5;
    color: #7b1fa2;
}

.mytreks-countdown[b-62u1mm55et] {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Trek Selector Dropdown */
.mytreks-trek-picker[b-62u1mm55et] {
    padding: 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-bottom: 2px solid #1b6ec2;
    border-top: 2px solid #1b6ec2;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.15);
    animation: trek-picker-highlight-b-62u1mm55et 0.3s ease-out;
}

@keyframes trek-picker-highlight-b-62u1mm55et {
    from {
        background: #fff;
        transform: scaleY(0.95);
        opacity: 0.8;
    }
    to {
        background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
        transform: scaleY(1);
        opacity: 1;
    }
}

.mytreks-trek-picker--initial[b-62u1mm55et] {
    margin-top: 0;
    border-bottom: none;
    padding: 24px 16px;
}

.mytreks-trek-picker label[b-62u1mm55et] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.mytreks-trek-picker select.form-control[b-62u1mm55et] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.mytreks-trek-picker select.form-control:focus[b-62u1mm55et] {
    outline: none;
    border-color: #1b6ec2;
}

/* Stats Section */
.mytreks-stats[b-62u1mm55et] {
    display: flex;
    justify-content: space-around;
    padding: 20px 16px;
    background: white;
    margin: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mytreks-stat[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mytreks-stat i[b-62u1mm55et] {
    font-size: 1.5rem;
    color: #1b6ec2;
}

.mytreks-stat .stat-value[b-62u1mm55et] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1f1f;
}

.mytreks-stat .stat-label[b-62u1mm55et] {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Route Info Section */
.mytreks-route-info[b-62u1mm55et] {
    padding: 0 16px;
    margin-bottom: 16px;
}

.mytreks-route-info h3[b-62u1mm55et] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 12px 0;
}

.route-card[b-62u1mm55et] {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.route-header[b-62u1mm55et] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.route-name[b-62u1mm55et] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f1f1f;
}

.route-country[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
}

.route-description[b-62u1mm55et] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Party Section */
.mytreks-party[b-62u1mm55et] {
    padding: 0 16px;
    margin-bottom: 16px;
}

.mytreks-party h3[b-62u1mm55et] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 12px 0;
}

.party-list[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.party-member[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.party-member--me[b-62u1mm55et] {

    border-left: 3px solid #1b6ec2;
}

.party-info[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.party-name[b-62u1mm55et] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f1f1f;
}

.party-you[b-62u1mm55et] {
    font-weight: 400;
    color: #1b6ec2;
    font-size: 0.85rem;
    padding-left:7px;
}

.party-role[b-62u1mm55et] {
    font-size: 0.8rem;
    color: #666;
}

.party-footer[b-62u1mm55et] {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    margin-top: 12px;
}

.party-list--transient[b-62u1mm55et] {
    margin-top: 12px;
}

.show-all-toggle[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
}

.show-all-toggle input[b-62u1mm55et] {
    display: none;
}

.toggle-slider[b-62u1mm55et] {
    width: 36px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    transition: background 0.2s ease;
}

.toggle-slider[b-62u1mm55et]::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease;
}

.show-all-toggle input:checked + .toggle-slider[b-62u1mm55et] {
    background: #1b6ec2;
}

.show-all-toggle input:checked + .toggle-slider[b-62u1mm55et]::after {
    transform: translateX(16px);
}

.toggle-label[b-62u1mm55et] {
    color: #666;
}

.party-member--transient[b-62u1mm55et] {
    opacity: 0.75;
    background: #f8f9fa;
}

.transient-icon[b-62u1mm55et] {
    color: #999;
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Quick Actions */
.mytreks-actions[b-62u1mm55et] {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    margin-bottom: 24px;
}

.action-btn[b-62u1mm55et] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-messages[b-62u1mm55et] {
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
}

.action-messages:hover[b-62u1mm55et] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 110, 194, 0.4);
}

.action-details[b-62u1mm55et] {
    background: white;
    color: #1b6ec2;
    border: 2px solid #1b6ec2;
}

.action-details:hover[b-62u1mm55et] {
    background: #f0f7ff;
}

/* All My Treks Section */
.mytreks-all-section[b-62u1mm55et] {
    padding: 0 16px 24px;
}

.mytreks-all-section h3[b-62u1mm55et] {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 12px 0;
}

.mytreks-list[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mytreks-list-item[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mytreks-list-item:hover[b-62u1mm55et] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.mytreks-list-item--selected[b-62u1mm55et] {
    border: 2px solid #1b6ec2;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.trek-thumb[b-62u1mm55et] {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.trek-thumb img[b-62u1mm55et] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trek-info[b-62u1mm55et] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trek-name[b-62u1mm55et] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f1f1f;
}

.trek-date[b-62u1mm55et] {
    font-size: 0.8rem;
    color: #666;
}

.trek-status-badge[b-62u1mm55et] {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trek-upcoming .trek-status-badge[b-62u1mm55et] {
    background: #e3f2fd;
    color: #1565c0;
}

.trek-active .trek-status-badge[b-62u1mm55et] {
    background: #e8f5e9;
    color: #2e7d32;
}

.trek-completed .trek-status-badge[b-62u1mm55et] {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* Loading State */
.mytreks-loading[b-62u1mm55et] {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

/* Empty States */
.mytreks-empty[b-62u1mm55et] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.mytreks-login-prompt[b-62u1mm55et] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.mytreks-empty i[b-62u1mm55et],
.mytreks-login-prompt i[b-62u1mm55et] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.mytreks-empty h5[b-62u1mm55et],
.mytreks-login-prompt h4[b-62u1mm55et] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 0.75rem 0;
}

.mytreks-empty p[b-62u1mm55et],
.mytreks-login-prompt p[b-62u1mm55et] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 280px;
}

.btn-explore[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
    text-decoration: none;
}

.btn-explore:hover[b-62u1mm55et] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 110, 194, 0.4);
}

.mytreks-login-prompt .btn[b-62u1mm55et] {
    margin-top: 1.5rem;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
    text-decoration: none;
}

.mytreks-login-prompt .btn:hover[b-62u1mm55et] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 110, 194, 0.4);
}

/* Skeleton loading styles */
.mytreks-skeleton[b-62u1mm55et] {
    padding: 0;
}

.skeleton-hero[b-62u1mm55et] {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-62u1mm55et 1.5s infinite;
}

.skeleton-stats[b-62u1mm55et] {
    height: 100px;
    margin: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-62u1mm55et 1.5s infinite;
    border-radius: 12px;
}

.skeleton-section[b-62u1mm55et] {
    padding: 0 16px;
    margin-bottom: 16px;
}

.skeleton-heading[b-62u1mm55et] {
    height: 20px;
    width: 120px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-62u1mm55et 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-card[b-62u1mm55et] {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-62u1mm55et 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 10px;
}

@keyframes skeleton-shimmer-b-62u1mm55et {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tabbed Section */
.mytreks-tabs[b-62u1mm55et] {
    margin: 16px 16px 16px;
}

.tab-buttons[b-62u1mm55et] {
    display: flex;
    gap: 4px;
    background: white;
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

.tab-btn[b-62u1mm55et] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn i[b-62u1mm55et] {
    font-size: 1.1rem;
}

.tab-btn:hover[b-62u1mm55et] {
    color: #1b6ec2;
    background: #f5f9ff;
}

.tab-btn.active[b-62u1mm55et] {
    color: #1b6ec2;
    background: white;
    font-weight: 600;
}

.tab-btn.active[b-62u1mm55et]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1b6ec2;
    border-radius: 3px 3px 0 0;
}

/* Tab Icon Wrapper for badge positioning */
.tab-icon-wrapper[b-62u1mm55et] {
    position: relative;
    display: inline-flex;
}

/* Tab Badge (notification-style overlay) */
.tab-badge[b-62u1mm55et] {
    position: absolute;
    top: -6px;
    right: -20px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--bs-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tab-content[b-62u1mm55et] {
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 16px;
    min-height: 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Route Tab - extend existing route-card styles */
.route-meta[b-62u1mm55et] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.meta-item[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
}

.meta-item i[b-62u1mm55et] {
    color: #1b6ec2;
    font-size: 0.9rem;
}

/* Full Details Button in Info Tab */
.btn-full-details[b-62u1mm55et] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    background: white;
    color: #1b6ec2;
    border: 2px solid #1b6ec2;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-full-details:hover[b-62u1mm55et] {
    background: #f0f7ff;
}

/* Itinerary Tab */
.itinerary-list[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-day[b-62u1mm55et] {
    display: flex;
    gap: 12px;
    position: relative;
}

.itinerary-day:not(:last-child)[b-62u1mm55et] {
    padding-bottom: 16px;
}

.itinerary-day:not(:last-child)[b-62u1mm55et]::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: #e8e8e8;
}

.day-marker[b-62u1mm55et] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.day-marker.completed[b-62u1mm55et] {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.day-number[b-62u1mm55et] {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.day-content[b-62u1mm55et] {
    flex: 1;
    padding-top: 4px;
}

.day-route[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f1f1f;
    flex-wrap: wrap;
}

.day-route i[b-62u1mm55et] {
    color: #1b6ec2;
    font-size: 0.8rem;
}

.day-start[b-62u1mm55et],
.day-end[b-62u1mm55et] {
    color: #1f1f1f;
}

.day-description[b-62u1mm55et] {
    margin: 6px 0 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Map Tab */
.map-container[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.route-map[b-62u1mm55et] {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

/* Tab Empty State */
.tab-empty[b-62u1mm55et] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    text-align: center;
}

.tab-empty i[b-62u1mm55et] {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 12px;
}

.tab-empty p[b-62u1mm55et] {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* Itinerary Map Container */
.itinerary-map-container[b-62u1mm55et] {
    margin: -16px -16px 16px -16px;
    border-radius: 0;
    overflow: hidden;
}

.itinerary-map[b-62u1mm55et] {
    width: 100%;
    height: 350px;
}

/* Clickable Itinerary Day */
.itinerary-day.has-waypoints[b-62u1mm55et] {
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.itinerary-day.has-waypoints:hover[b-62u1mm55et] {
    background: #f8f9fa;
}

.itinerary-day.selected[b-62u1mm55et] {
    background: #e3f2fd;
    border: 1px solid #1b6ec2;
}

.itinerary-day.selected .day-marker.active[b-62u1mm55et] {
    box-shadow: 0 0 0 3px rgba(27, 110, 194, 0.3);
}

.waypoint-indicator[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 4px 8px;
    background: #e3f2fd;
    color: #1b6ec2;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.waypoint-indicator i[b-62u1mm55et] {
    font-size: 0.8rem;
}

.day-select-icon[b-62u1mm55et] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #aaa;
    flex-shrink: 0;
    align-self: center;
}

.itinerary-day.selected .day-select-icon[b-62u1mm55et] {
    color: #1b6ec2;
}

/* Media Tab */
.media-tab[b-62u1mm55et] {
    min-height: 200px;
}

.media-tab .tab-empty small[b-62u1mm55et] {
    display: block;
    margin-top: 8px;
    color: #aaa;
}

/* Media Upload Section */
.media-upload-section[b-62u1mm55et] {
    margin-bottom: 16px;
}

.media-upload-btn[b-62u1mm55et] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 110, 194, 0.3);
}

.media-upload-btn:hover[b-62u1mm55et] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.4);
}

.media-upload-btn i[b-62u1mm55et] {
    font-size: 1.1rem;
}

.media-uploading[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #e3f2fd;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #1b6ec2;
    font-size: 0.9rem;
}

.media-error[b-62u1mm55et] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #ffebee;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #c62828;
    font-size: 0.9rem;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/PartnerDetails.razor.rz.scp.css */
/* Back Button */
.page-header[b-wslx4nh9nx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-wslx4nh9nx] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-wslx4nh9nx] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.personal-details-container[b-wslx4nh9nx] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards */
.section-card[b-wslx4nh9nx] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.section-header[b-wslx4nh9nx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-wslx4nh9nx] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

/* Partner Header */
.partner-header[b-wslx4nh9nx] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.partner-icon[b-wslx4nh9nx] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-icon i[b-wslx4nh9nx] {
    font-size: 1.75rem;
    color: white;
}

.partner-info[b-wslx4nh9nx] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.partner-info h3[b-wslx4nh9nx] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.verified-badge[b-wslx4nh9nx] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.verified-badge i[b-wslx4nh9nx] {
    font-size: 0.875rem;
}

.pending-badge[b-wslx4nh9nx] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pending-badge i[b-wslx4nh9nx] {
    font-size: 0.875rem;
}

/* Document Upload Section */
.document-upload-section[b-wslx4nh9nx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.document-upload-section:last-child[b-wslx4nh9nx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.document-upload-section > label[b-wslx4nh9nx] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

/* Certificate Image Section */
.certificate-image-section[b-wslx4nh9nx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.certificate-image-section > label[b-wslx4nh9nx] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
}

.certificate-image-wrapper[b-wslx4nh9nx] {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px dashed var(--border-color, #d0d0d0);
    background: var(--input-bg, #fafafa);
}

.certificate-image[b-wslx4nh9nx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PDF Preview */
.pdf-preview[b-wslx4nh9nx] {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f8f9fa;
}

.pdf-embed[b-wslx4nh9nx] {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-fallback[b-wslx4nh9nx] {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
    gap: 0.5rem;
}

.pdf-icon[b-wslx4nh9nx] {
    font-size: 3rem;
    color: #dc3545;
}

.pdf-fallback span[b-wslx4nh9nx] {
    font-size: 0.875rem;
    color: #666;
}

.pdf-fallback .btn-link[b-wslx4nh9nx] {
    color: #667eea;
    text-decoration: none;
    font-size: 0.875rem;
}

.pdf-fallback .btn-link:hover[b-wslx4nh9nx] {
    text-decoration: underline;
}

/* Show fallback when embed is not visible or fails */
@supports not ((-webkit-overflow-scrolling: touch)) {
    /* Desktop browsers usually support embed */
}

/* For browsers that don't support PDF embed well, show fallback */
.pdf-preview:has(.pdf-embed[src=""]) .pdf-fallback[b-wslx4nh9nx] {
    display: flex;
}

/* Custom Documents Grid - 4 wide */
.custom-documents-grid[b-wslx4nh9nx] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.custom-document-item[b-wslx4nh9nx] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.custom-document-item > label[b-wslx4nh9nx] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    text-align: center;
}

.custom-document-wrapper[b-wslx4nh9nx] {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px dashed var(--border-color, #d0d0d0);
    background: var(--input-bg, #fafafa);
}

.custom-document-wrapper .certificate-image[b-wslx4nh9nx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-document-wrapper .certificate-placeholder[b-wslx4nh9nx] {
    gap: 0.25rem;
}

.custom-document-wrapper .certificate-placeholder i[b-wslx4nh9nx] {
    font-size: 1.5rem;
}

.custom-document-wrapper .pdf-preview .pdf-fallback[b-wslx4nh9nx] {
    padding: 0.5rem;
}

.custom-document-wrapper .pdf-icon[b-wslx4nh9nx] {
    font-size: 1.5rem;
}

.custom-document-wrapper .pdf-fallback span[b-wslx4nh9nx] {
    font-size: 0.7rem;
}

.btn-upload-small[b-wslx4nh9nx] {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.btn-upload-small:hover[b-wslx4nh9nx] {
    transform: scale(1.1);
}

.btn-upload-small.uploading[b-wslx4nh9nx] {
    pointer-events: none;
    opacity: 0.8;
}

.btn-remove-small[b-wslx4nh9nx] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffebee;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(198, 40, 40, 0.3);
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.btn-remove-small:hover:not(:disabled)[b-wslx4nh9nx] {
    background: #ffcdd2;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(198, 40, 40, 0.4);
}

.btn-remove-small:disabled[b-wslx4nh9nx] {
    opacity: 0.6;
    cursor: not-allowed;
}

.certificate-message.small[b-wslx4nh9nx] {
    padding: 0.25rem;
    font-size: 0.7rem;
    text-align: center;
}

/* Responsive: 2 columns on smaller screens */
@media (max-width: 600px) {
    .custom-documents-grid[b-wslx4nh9nx] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.certificate-placeholder[b-wslx4nh9nx] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    gap: 0.5rem;
}

.certificate-placeholder i[b-wslx4nh9nx] {
    font-size: 3rem;
}

.certificate-placeholder span[b-wslx4nh9nx] {
    font-size: 0.875rem;
}

.btn-upload-certificate[b-wslx4nh9nx] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-upload-certificate:hover[b-wslx4nh9nx] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.btn-upload-certificate.uploading[b-wslx4nh9nx] {
    pointer-events: none;
    opacity: 0.8;
}

.btn-remove-certificate[b-wslx4nh9nx] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffebee;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-remove-certificate:hover:not(:disabled)[b-wslx4nh9nx] {
    background: #ffcdd2;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}

.btn-remove-certificate:disabled[b-wslx4nh9nx] {
    opacity: 0.6;
    cursor: not-allowed;
}

.certificate-message[b-wslx4nh9nx] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    max-width: 300px;
}

.certificate-message.success[b-wslx4nh9nx] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.certificate-message.error[b-wslx4nh9nx] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Spin Animation */
.spin[b-wslx4nh9nx] {
    animation: spin-b-wslx4nh9nx 1s linear infinite;
}

@keyframes spin-b-wslx4nh9nx {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Elements */
.form-group[b-wslx4nh9nx] {
    margin-bottom: 0.875rem;
}

.form-group:last-child[b-wslx4nh9nx] {
    margin-bottom: 0;
}

.form-group label[b-wslx4nh9nx] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    margin-bottom: 0.4rem;
}

.form-control[b-wslx4nh9nx] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-wslx4nh9nx] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

select.form-control[b-wslx4nh9nx] {
    cursor: pointer;
}

textarea.form-control[b-wslx4nh9nx] {
    resize: vertical;
    min-height: 70px;
}

/* Validation */
.validation-message[b-wslx4nh9nx] {
    color: var(--danger-color, #dc3545);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Alerts */
.alert[b-wslx4nh9nx] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-wslx4nh9nx] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-wslx4nh9nx] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Buttons */
.btn[b-wslx4nh9nx] {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-wslx4nh9nx] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-wslx4nh9nx] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-wslx4nh9nx] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-wslx4nh9nx] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-wslx4nh9nx] {
    background: var(--secondary-hover, #d3d8de);
}

/* Form Actions */
.form-actions[b-wslx4nh9nx] {
    display: flex;
    gap: 0.75rem;
}

.form-actions .btn[b-wslx4nh9nx] {
    flex: 1;
}

/* Loading and Error States */
.loading-state[b-wslx4nh9nx],
.error-state[b-wslx4nh9nx] {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-state p[b-wslx4nh9nx],
.error-state p[b-wslx4nh9nx] {
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .partner-header[b-wslx4nh9nx] {
        flex-direction: column;
        text-align: center;
    }

    .partner-info[b-wslx4nh9nx] {
        align-items: center;
    }

    .certificate-image-wrapper[b-wslx4nh9nx] {
        max-width: 100%;
        height: 180px;
    }

    .certificate-message[b-wslx4nh9nx] {
        max-width: 100%;
    }
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/PaymentMethods.razor.rz.scp.css */
/* Back Button */
.page-header[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-poxmoh5kf5] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-poxmoh5kf5] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.payment-methods-container[b-poxmoh5kf5] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
}

.section-card[b-poxmoh5kf5] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-poxmoh5kf5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-poxmoh5kf5] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.card-count[b-poxmoh5kf5] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    background: var(--badge-bg, #f0f0f0);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

/* Empty State */
.empty-state[b-poxmoh5kf5] {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-state.small[b-poxmoh5kf5] {
    padding: 1rem;
}

.empty-icon[b-poxmoh5kf5] {
    font-size: 3rem;
    color: var(--text-muted, #999);
    margin-bottom: 1rem;
}

.empty-state p[b-poxmoh5kf5] {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary, #666);
    font-weight: 500;
}

.empty-hint[b-poxmoh5kf5] {
    font-size: 0.85rem;
    color: var(--text-muted, #999);
}

/* Payment Cards List */
.payment-cards-list[b-poxmoh5kf5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.payment-card[b-poxmoh5kf5] {
    display: flex;
    padding: 1rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 10px;
    border: 1px solid var(--border-color, #e5e5e5);
    transition: all 0.2s ease;
}

.payment-card:hover[b-poxmoh5kf5] {
    border-color: var(--primary-color, #4a90d9);
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.15);
}

.payment-card.default-card[b-poxmoh5kf5] {
    border-color: var(--success-color, #28a745);
    background: rgba(40, 167, 69, 0.05);
}

.payment-card.expired-card[b-poxmoh5kf5] {
    border-color: var(--warning-color, #ffc107);
    background: rgba(255, 193, 7, 0.05);
}

.card-left[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.card-brand-icon[b-poxmoh5kf5] {
    width: 48px;
    height: 32px;
    object-fit: contain;
}

.card-info[b-poxmoh5kf5] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.card-number[b-poxmoh5kf5] {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: 0.5px;
}

.card-meta[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.card-expiry[b-poxmoh5kf5] {
    color: var(--text-secondary, #666);
}

.card-expiry.expired[b-poxmoh5kf5] {
    color: var(--danger-color, #dc3545);
    font-weight: 500;
}

.default-badge[b-poxmoh5kf5] {
    background: var(--success-color, #28a745);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Card Actions - now inside card-meta */
.card-actions[b-poxmoh5kf5] {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.btn-icon[b-poxmoh5kf5] {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #666);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-icon:hover[b-poxmoh5kf5] {
    background: var(--hover-bg, #e9ecef);
    color: var(--primary-color, #4a90d9);
}

.btn-icon.btn-danger:hover[b-poxmoh5kf5] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
}

/* Add Card Button */
.btn-add-card[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    border: 2px dashed var(--border-color, #d0d0d0);
    background: transparent;
    border-radius: 10px;
    color: var(--primary-color, #4a90d9);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-card:hover[b-poxmoh5kf5] {
    border-color: var(--primary-color, #4a90d9);
    background: rgba(74, 144, 217, 0.05);
}

.btn-add-card i[b-poxmoh5kf5] {
    font-size: 1.2rem;
}

/* Edit Button */
.btn-edit[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: none;
    background: var(--hover-bg, #e9ecef);
    border-radius: 6px;
    color: var(--text-secondary, #666);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit:hover[b-poxmoh5kf5] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

/* Address Display */
.address-display[b-poxmoh5kf5] {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 8px;
}

.address-display i[b-poxmoh5kf5] {
    color: var(--primary-color, #4a90d9);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.address-display p[b-poxmoh5kf5] {
    margin: 0;
    color: var(--text-primary, #1a1a1a);
    line-height: 1.5;
    white-space: pre-wrap;
}

/* Address Form */
.address-form[b-poxmoh5kf5] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-poxmoh5kf5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-poxmoh5kf5] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
}

.form-control[b-poxmoh5kf5] {
    padding: 0.75rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.form-control:focus[b-poxmoh5kf5] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.form-actions[b-poxmoh5kf5] {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn[b-poxmoh5kf5] {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-poxmoh5kf5] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-poxmoh5kf5] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-poxmoh5kf5] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-poxmoh5kf5] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-poxmoh5kf5] {
    background: var(--secondary-hover, #d3d8de);
}

.btn-link[b-poxmoh5kf5] {
    background: none;
    border: none;
    color: var(--primary-color, #4a90d9);
    padding: 0;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.btn-link:hover[b-poxmoh5kf5] {
    color: var(--primary-hover, #3a7bc8);
}

/* Alerts */
.alert[b-poxmoh5kf5] {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-poxmoh5kf5] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-poxmoh5kf5] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Loading and Error States */
.loading-state[b-poxmoh5kf5],
.error-state[b-poxmoh5kf5] {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-state p[b-poxmoh5kf5],
.error-state p[b-poxmoh5kf5] {
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

/* Card Form */
.card-form[b-poxmoh5kf5] {
    background: var(--card-bg, #f8f9fa);
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1rem;
    border: 1px solid var(--border-color, #e5e5e5);
}

.card-form h5[b-poxmoh5kf5] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.form-row[b-poxmoh5kf5] {
    display: flex;
    gap: 1rem;
}

.form-row .form-group[b-poxmoh5kf5] {
    flex: 1;
}

.checkbox-group[b-poxmoh5kf5] {
    flex-direction: row;
    align-items: center;
}

.checkbox-group label[b-poxmoh5kf5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"][b-poxmoh5kf5] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color, #4a90d9);
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/PersonalDetails.razor.rz.scp.css */
/* Back Button */
.page-header[b-xxaqniwzuc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-xxaqniwzuc] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-xxaqniwzuc] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.personal-details-container[b-xxaqniwzuc] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards - matches PaymentMethods */
.section-card[b-xxaqniwzuc] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.section-header[b-xxaqniwzuc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-xxaqniwzuc] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

/* Profile Section */
.profile-section[b-xxaqniwzuc] {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.profile-picture-wrapper[b-xxaqniwzuc] {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-picture[b-xxaqniwzuc] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-picture-placeholder[b-xxaqniwzuc] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #4a90d9) 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-picture-placeholder span[b-xxaqniwzuc] {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

/* Camera Overlay Button (right side) */
.camera-overlay[b-xxaqniwzuc] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
}

.camera-overlay:hover[b-xxaqniwzuc] {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
}

.camera-overlay.uploading[b-xxaqniwzuc] {
    pointer-events: none;
    opacity: 0.8;
}

.camera-overlay i[b-xxaqniwzuc] {
    color: white;
    font-size: 1rem;
}

/* Remove Photo Button (left side) */
.btn-remove-photo[b-xxaqniwzuc] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 36px;
    background: #ffebee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.3);
    transition: all 0.2s ease;
}

.btn-remove-photo:hover:not(:disabled)[b-xxaqniwzuc] {
    background: #ffcdd2;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
}

.btn-remove-photo:disabled[b-xxaqniwzuc] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-remove-photo i[b-xxaqniwzuc] {
    color: #c62828;
    font-size: 1rem;
}

/* Spin Animation */
.spin[b-xxaqniwzuc] {
    animation: spin-b-xxaqniwzuc 1s linear infinite;
}

@keyframes spin-b-xxaqniwzuc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Picture Message */
.picture-message[b-xxaqniwzuc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.picture-message.success[b-xxaqniwzuc] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.picture-message.error[b-xxaqniwzuc] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Form Elements */
.form-row[b-xxaqniwzuc] {
    display: flex;
    gap: 0.75rem;
}

.form-row .form-group[b-xxaqniwzuc] {
    flex: 1;
}

.form-group[b-xxaqniwzuc] {
    margin-bottom: 0.875rem;
}

.form-group:last-child[b-xxaqniwzuc] {
    margin-bottom: 0;
}

.form-group-small[b-xxaqniwzuc] {
    max-width: 100px;
}

.form-group label[b-xxaqniwzuc] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    margin-bottom: 0.4rem;
}

.form-control[b-xxaqniwzuc] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-xxaqniwzuc] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

select.form-control[b-xxaqniwzuc] {
    cursor: pointer;
}

textarea.form-control[b-xxaqniwzuc] {
    resize: vertical;
    min-height: 70px;
}

/* Validation */
.validation-message[b-xxaqniwzuc] {
    color: var(--danger-color, #dc3545);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Alerts */
.alert[b-xxaqniwzuc] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-xxaqniwzuc] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-xxaqniwzuc] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Buttons */
.btn[b-xxaqniwzuc] {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-xxaqniwzuc] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-xxaqniwzuc] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-xxaqniwzuc] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-xxaqniwzuc] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-xxaqniwzuc] {
    background: var(--secondary-hover, #d3d8de);
}

/* Form Actions */
.form-actions[b-xxaqniwzuc] {
    display: flex;
    gap: 0.75rem;
}

.form-actions .btn[b-xxaqniwzuc] {
    flex: 1;
}

/* Loading and Error States */
.loading-state[b-xxaqniwzuc],
.error-state[b-xxaqniwzuc] {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-state p[b-xxaqniwzuc],
.error-state p[b-xxaqniwzuc] {
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

/* Passport Section */
.passport-layout[b-xxaqniwzuc] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.passport-fields[b-xxaqniwzuc] {
    flex: 1;
    min-width: 0;
}

.passport-image-section[b-xxaqniwzuc] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.passport-image-section > label[b-xxaqniwzuc] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
}

.passport-image-wrapper[b-xxaqniwzuc] {
    position: relative;
    width: 160px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px dashed var(--border-color, #d0d0d0);
    background: var(--input-bg, #fafafa);
}

.passport-image[b-xxaqniwzuc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passport-placeholder[b-xxaqniwzuc] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    gap: 0.25rem;
}

.passport-placeholder i[b-xxaqniwzuc] {
    font-size: 2rem;
}

.passport-placeholder span[b-xxaqniwzuc] {
    font-size: 0.75rem;
}

.btn-upload-passport[b-xxaqniwzuc] {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-upload-passport:hover[b-xxaqniwzuc] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.btn-upload-passport.uploading[b-xxaqniwzuc] {
    pointer-events: none;
    opacity: 0.8;
}

.btn-remove-passport[b-xxaqniwzuc] {
    position: absolute;
    bottom: 6px;
    left: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffebee;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-remove-passport:hover:not(:disabled)[b-xxaqniwzuc] {
    background: #ffcdd2;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}

.btn-remove-passport:disabled[b-xxaqniwzuc] {
    opacity: 0.6;
    cursor: not-allowed;
}

.passport-message[b-xxaqniwzuc] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    max-width: 160px;
}

.passport-message.success[b-xxaqniwzuc] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.passport-message.error[b-xxaqniwzuc] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Passport Number Input with Toggle */
.passport-number-input[b-xxaqniwzuc] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passport-number-input .form-control[b-xxaqniwzuc] {
    flex: 1;
    padding-right: 2.5rem;
}

.btn-toggle-visibility[b-xxaqniwzuc] {
    position: absolute;
    right: 0.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    background: transparent;
    border: none;
    color: var(--text-secondary, #666);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-toggle-visibility:hover[b-xxaqniwzuc] {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary, #1a1a1a);
}

.btn-toggle-visibility i[b-xxaqniwzuc] {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .form-row[b-xxaqniwzuc] {
        flex-direction: column;
        gap: 0;
        padding-bottom: 1rem;
    }

    .form-group-small[b-xxaqniwzuc] {
        max-width: none;
    }

    .profile-picture[b-xxaqniwzuc],
    .profile-picture-placeholder[b-xxaqniwzuc] {
        width: 110px;
        height: 110px;
    }

    .profile-picture-placeholder span[b-xxaqniwzuc] {
        font-size: 1.75rem;
    }

    .camera-overlay[b-xxaqniwzuc],
    .btn-remove-photo[b-xxaqniwzuc] {
        width: 32px;
        height: 32px;
    }

    .camera-overlay i[b-xxaqniwzuc],
    .btn-remove-photo i[b-xxaqniwzuc] {
        font-size: 0.9rem;
    }

    /* Passport responsive */
    .passport-layout[b-xxaqniwzuc] {
        flex-direction: column;
    }

    .passport-fields[b-xxaqniwzuc] {
        width: 100%;
    }

    .passport-fields .form-row[b-xxaqniwzuc] {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .passport-fields .form-group[b-xxaqniwzuc] {
        width: 100%;
        flex: none;
    }

    .passport-fields .form-control[b-xxaqniwzuc] {
        width: 100%;
        box-sizing: border-box;
    }

    .passport-image-section[b-xxaqniwzuc] {
        align-items: center;
        width: 100%;
    }

    .passport-image-wrapper[b-xxaqniwzuc] {
        width: 100%;
        max-width: 200px;
        height: 140px;
    }

    .passport-message[b-xxaqniwzuc] {
        max-width: 100%;
    }
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Security.razor.rz.scp.css */
/* Back Button */
.page-header[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-f8ji31n3r6] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-f8ji31n3r6] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.security-container[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

/* Section Cards */
.section-card[b-f8ji31n3r6] {
    background: var(--surface-color, #ffffff);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header[b-f8ji31n3r6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.section-header h4[b-f8ji31n3r6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.section-header > i[b-f8ji31n3r6] {
    color: var(--text-secondary, #666);
    font-size: 1.1rem;
}

/* Status Badge */
.status-badge[b-f8ji31n3r6] {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.status-badge.enabled[b-f8ji31n3r6] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
}

.status-badge.disabled[b-f8ji31n3r6] {
    background: var(--badge-bg, #f0f0f0);
    color: var(--text-secondary, #666);
}

/* Form Elements */
.password-form[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label[b-f8ji31n3r6] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
}

.password-input-wrapper[b-f8ji31n3r6] {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control[b-f8ji31n3r6] {
    width: 100%;
    padding: 0.35rem 0.75rem;
    padding-right: 2.5rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color, #d0d0d0);
    border-radius: 8px;
    background: var(--input-bg, #fafafa);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-f8ji31n3r6] {
    outline: none;
    border-color: var(--primary-color, #4a90d9);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.btn-toggle-password[b-f8ji31n3r6] {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary, #666);
}

.btn-toggle-password:hover[b-f8ji31n3r6] {
    color: var(--text-primary, #1a1a1a);
}

/* Password Strength */
.password-strength[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.strength-bar[b-f8ji31n3r6] {
    flex: 1;
    height: 4px;
    background: var(--border-color, #e5e5e5);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill[b-f8ji31n3r6] {
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-fill.weak[b-f8ji31n3r6] {
    background: var(--danger-color, #dc3545);
}

.strength-fill.medium[b-f8ji31n3r6] {
    background: var(--warning-color, #ffc107);
}

.strength-fill.strong[b-f8ji31n3r6] {
    background: var(--success-color, #28a745);
}

.strength-text[b-f8ji31n3r6] {
    font-size: 0.75rem;
    font-weight: 500;
}

.strength-text.weak[b-f8ji31n3r6] {
    color: var(--danger-color, #dc3545);
}

.strength-text.medium[b-f8ji31n3r6] {
    color: var(--warning-color, #d39e00);
}

.strength-text.strong[b-f8ji31n3r6] {
    color: var(--success-color, #28a745);
}

.validation-error[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--danger-color, #dc3545);
}

/* Buttons */
.btn[b-f8ji31n3r6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-f8ji31n3r6] {
    background: var(--primary-color, #4a90d9);
    color: white;
}

.btn-primary:hover[b-f8ji31n3r6] {
    background: var(--primary-hover, #3a7bc8);
}

.btn-primary:disabled[b-f8ji31n3r6] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-f8ji31n3r6] {
    background: var(--secondary-bg, #e9ecef);
    color: var(--text-primary, #1a1a1a);
}

.btn-secondary:hover[b-f8ji31n3r6] {
    background: var(--secondary-hover, #d3d8de);
}

.btn-danger[b-f8ji31n3r6] {
    background: var(--danger-color, #dc3545);
    color: white;
}

.btn-danger:hover[b-f8ji31n3r6] {
    background: #c82333;
}

.btn-outline-danger[b-f8ji31n3r6] {
    background: transparent;
    border: 1px solid var(--danger-color, #dc3545);
    color: var(--danger-color, #dc3545);
}

.btn-outline-danger:hover[b-f8ji31n3r6] {
    background: rgba(220, 53, 69, 0.1);
}

.btn-icon[b-f8ji31n3r6] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #666);
    transition: all 0.2s ease;
}

.btn-icon:hover[b-f8ji31n3r6] {
    background: var(--hover-bg, #e9ecef);
}

.btn-icon.btn-danger:hover[b-f8ji31n3r6] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
}

/* Alerts */
.alert[b-f8ji31n3r6] {
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-success[b-f8ji31n3r6] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error[b-f8ji31n3r6] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Two-Factor Authentication */
.two-factor-content[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.two-factor-toggle[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 10px;
}

.toggle-info[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-info > i[b-f8ji31n3r6] {
    font-size: 1.5rem;
    color: var(--primary-color, #4a90d9);
}

.toggle-info > div[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
}

.toggle-title[b-f8ji31n3r6] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
}

.toggle-description[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

/* Toggle Switch */
.toggle-switch[b-f8ji31n3r6] {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input[b-f8ji31n3r6] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-f8ji31n3r6] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color, #ccc);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider[b-f8ji31n3r6]::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider[b-f8ji31n3r6] {
    background: var(--success-color, #28a745);
}

.toggle-switch input:checked + .toggle-slider[b-f8ji31n3r6]::before {
    transform: translateX(22px);
}

.two-factor-setup[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(74, 144, 217, 0.05);
    border-radius: 8px;
    border: 1px dashed var(--primary-color, #4a90d9);
}

.setup-info[b-f8ji31n3r6] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.setup-info > i[b-f8ji31n3r6] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
    margin-top: 0.1rem;
}

.setup-info > p[b-f8ji31n3r6] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

/* Session List */
.session-list[b-f8ji31n3r6] {
    list-style: none;
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.session-count[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
    background: var(--badge-bg, #f0f0f0);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.session-item[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.session-item:hover[b-f8ji31n3r6] {
    background: var(--hover-bg, #f5f5f5);
}

.session-item.current[b-f8ji31n3r6] {
    background: rgba(74, 144, 217, 0.05);
}

.session-icon[b-f8ji31n3r6] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--card-bg, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.session-icon i[b-f8ji31n3r6] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
}

.session-details[b-f8ji31n3r6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.session-name[b-f8ji31n3r6] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-badge[b-f8ji31n3r6] {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    background: var(--primary-color, #4a90d9);
    color: white;
    border-radius: 4px;
}

.session-info[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

.session-time[b-f8ji31n3r6] {
    font-size: 0.75rem;
    color: var(--text-muted, #999);
}

/* History List */
.history-list[b-f8ji31n3r6] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.history-count[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

.history-item[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.history-item:hover[b-f8ji31n3r6] {
    background: var(--hover-bg, #f5f5f5);
}

.history-info[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.history-info > i[b-f8ji31n3r6] {
    font-size: 1rem;
}

.history-info > i.success[b-f8ji31n3r6] {
    color: var(--success-color, #28a745);
}

.history-info > i.failed[b-f8ji31n3r6] {
    color: var(--danger-color, #dc3545);
}

.history-info > div[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.history-details[b-f8ji31n3r6] {
    font-size: 0.85rem;
    color: var(--text-primary, #1a1a1a);
}

.history-time[b-f8ji31n3r6] {
    font-size: 0.75rem;
    color: var(--text-muted, #999);
}

.status-indicator[b-f8ji31n3r6] {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-indicator.success[b-f8ji31n3r6] {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color, #28a745);
}

.status-indicator.failed[b-f8ji31n3r6] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color, #dc3545);
}

/* Danger Zone */
.section-card.danger-zone[b-f8ji31n3r6] {
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.section-card.danger-zone .section-header[b-f8ji31n3r6] {
    border-bottom-color: rgba(220, 53, 69, 0.2);
}

.section-card.danger-zone .section-header h4[b-f8ji31n3r6] {
    color: var(--danger-color, #dc3545);
}

.section-card.danger-zone .section-header > i[b-f8ji31n3r6] {
    color: var(--danger-color, #dc3545);
}

.danger-content[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.danger-item[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.danger-info[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.danger-info > i[b-f8ji31n3r6] {
    font-size: 1.25rem;
    color: var(--danger-color, #dc3545);
}

.danger-info > div[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.danger-title[b-f8ji31n3r6] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
}

.danger-description[b-f8ji31n3r6] {
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
}

.warning-text[b-f8ji31n3r6] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.warning-text > i[b-f8ji31n3r6] {
    color: var(--danger-color, #dc3545);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Support PIN Section */
.pin-content[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pin-description[b-f8ji31n3r6] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem;
    background: rgba(74, 144, 217, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.pin-description > i[b-f8ji31n3r6] {
    color: var(--primary-color, #4a90d9);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pin-input[b-f8ji31n3r6] {
    font-family: monospace;
    font-size: 1.25rem;
    letter-spacing: 0.5rem;
    text-align: center;
}

/* Your Data Section */
.data-content[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-description[b-f8ji31n3r6] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem;
    background: rgba(74, 144, 217, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.data-description > i[b-f8ji31n3r6] {
    color: var(--primary-color, #4a90d9);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Claims Debug Section */
.claims-content[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.claims-description[b-f8ji31n3r6] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem;
    background: rgba(74, 144, 217, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.4;
}

.claims-description > i[b-f8ji31n3r6] {
    color: var(--primary-color, #4a90d9);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.claims-debug[b-f8ji31n3r6] {
    background: var(--card-bg, #f8f9fa);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.claims-debug h5[b-f8ji31n3r6] {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.claims-list[b-f8ji31n3r6] {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.claims-list li[b-f8ji31n3r6] {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
    word-break: break-all;
}

.claims-list li:last-child[b-f8ji31n3r6] {
    border-bottom: none;
}

.claims-list li strong[b-f8ji31n3r6] {
    color: var(--primary-color, #4a90d9);
    font-weight: 500;
}

/* Loading & Empty States */
.loading-placeholder[b-f8ji31n3r6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--text-secondary, #666);
    font-size: 0.9rem;
}

.loading-placeholder i[b-f8ji31n3r6] {
    font-size: 1.25rem;
    color: var(--primary-color, #4a90d9);
}

.empty-state[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: var(--text-secondary, #666);
}

.empty-state i[b-f8ji31n3r6] {
    font-size: 2rem;
    color: var(--text-muted, #999);
}

.empty-state p[b-f8ji31n3r6] {
    margin: 0;
    font-size: 0.9rem;
}

/* Spinning Animation */
.spinning[b-f8ji31n3r6] {
    animation: spin-b-f8ji31n3r6 1s linear infinite;
}

@keyframes spin-b-f8ji31n3r6 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Delete Confirmation Modal */
.modal-overlay[b-f8ji31n3r6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-f8ji31n3r6] {
    background: var(--surface-color, #ffffff);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header[b-f8ji31n3r6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
}

.modal-header .warning-icon[b-f8ji31n3r6] {
    font-size: 3rem;
    color: var(--danger-color, #dc3545);
}

.modal-header h3[b-f8ji31n3r6] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.modal-body[b-f8ji31n3r6] {
    padding: 0 1.5rem 1rem;
}

.modal-body p[b-f8ji31n3r6] {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}

.modal-body ul[b-f8ji31n3r6] {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
}

.modal-body ul li[b-f8ji31n3r6] {
    margin-bottom: 0.25rem;
}

.modal-body .confirm-text[b-f8ji31n3r6] {
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 0.5rem;
}

.modal-body .form-control[b-f8ji31n3r6] {
    padding-right: 0.75rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.modal-body .alert[b-f8ji31n3r6] {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-footer[b-f8ji31n3r6] {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    justify-content: flex-end;
}

.modal-footer .btn[b-f8ji31n3r6] {
    flex: 1;
}

.modal-footer .btn-danger:disabled[b-f8ji31n3r6] {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-footer .btn-secondary:disabled[b-f8ji31n3r6] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/SignOut.razor.rz.scp.css */
.signout-container[b-yw3t9vvi0j] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.signout-card[b-yw3t9vvi0j] {
    text-align: center;
}

.signout-icon[b-yw3t9vvi0j] {
    margin-bottom: 20px;
}

.signout-icon img[b-yw3t9vvi0j] {
    width: 72px;
    height: 72px;
    opacity: 0.9;
}

.signout-user[b-yw3t9vvi0j] {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.user-greeting[b-yw3t9vvi0j] {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-name[b-yw3t9vvi0j] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 4px 0;
}

.user-email[b-yw3t9vvi0j] {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.signout-message[b-yw3t9vvi0j] {
    margin-bottom: 28px;
}

.signout-message h4[b-yw3t9vvi0j] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 8px 0;
}

.signout-message p[b-yw3t9vvi0j] {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.signout-actions[b-yw3t9vvi0j] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-signout[b-yw3t9vvi0j] {
    display: block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-signout:hover[b-yw3t9vvi0j] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
    color: white;
}

.btn-cancel[b-yw3t9vvi0j] {
    display: block;
    padding: 14px 24px;
    background: white;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-yw3t9vvi0j] {
    border-color: #ccc;
    color: #444;
}

.signout-info[b-yw3t9vvi0j] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.signout-info h5[b-yw3t9vvi0j] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 12px 0;
}

.signout-info ul[b-yw3t9vvi0j] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signout-info li[b-yw3t9vvi0j] {
    font-size: 0.875rem;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.signout-info li[b-yw3t9vvi0j]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.signout-troubleshoot[b-yw3t9vvi0j] {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.signout-troubleshoot h5[b-yw3t9vvi0j] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #856404;
    margin: 0 0 8px 0;
}

.signout-troubleshoot p[b-yw3t9vvi0j] {
    font-size: 0.85rem;
    color: #856404;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.troubleshoot-actions[b-yw3t9vvi0j] {
    display: flex;
    gap: 12px;
}

.btn-troubleshoot[b-yw3t9vvi0j] {
    flex: 1;
    padding: 10px 16px;
    background: white;
    color: #856404;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #ffc107;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-troubleshoot:hover[b-yw3t9vvi0j] {
    background: #ffc107;
    color: #1f1f1f;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/TrekDetails.razor.rz.scp.css */
/* TrekDetails Page Styles */

.content-area.trek-content[b-3bkf89k8ql] {
    padding: 0;
}

.trek-details[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Section with Overlay */
.trek-hero[b-3bkf89k8ql] {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.hero-image[b-3bkf89k8ql] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay[b-3bkf89k8ql] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.back-button[b-3bkf89k8ql] {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-3bkf89k8ql] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hero-content[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 1rem;
}

.trek-title[b-3bkf89k8ql] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.trek-badges[b-3bkf89k8ql] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge[b-3bkf89k8ql] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge i[b-3bkf89k8ql] {
    font-size: 0.9rem;
}

.badge.duration[b-3bkf89k8ql] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.badge.difficulty[b-3bkf89k8ql] {
    border: 1px solid;
}

.badge.difficulty.easy[b-3bkf89k8ql] {
    background: rgba(40, 167, 69, 0.8);
    border-color: rgba(40, 167, 69, 0.9);
    color: white;
}

.badge.difficulty.moderate[b-3bkf89k8ql] {
    background: rgba(255, 193, 7, 0.8);
    border-color: rgba(255, 193, 7, 0.9);
    color: #1a1a1a;
}

.badge.difficulty.challenging[b-3bkf89k8ql] {
    background: rgba(253, 126, 20, 0.8);
    border-color: rgba(253, 126, 20, 0.9);
    color: white;
}

.badge.difficulty.very-hard[b-3bkf89k8ql] {
    background: rgba(220, 53, 69, 0.8);
    border-color: rgba(220, 53, 69, 0.9);
    color: white;
}

/* Quick Info Cards */
.trek-quick-info[b-3bkf89k8ql] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: -44px 16px 0 16px;
    position: relative;
    z-index: 1;
}

.info-item[b-3bkf89k8ql] {
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item > i[b-3bkf89k8ql] {
    font-size: 1.5rem;
    color: #1b6ec2;
}

.info-text[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item strong[b-3bkf89k8ql] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
}

.info-item span[b-3bkf89k8ql] {
    font-size: 0.9rem;
    color: #1f1f1f;
    font-weight: 600;
}

/* Section Styling */
.trek-section[b-3bkf89k8ql] {
    padding: 0 16px;
}

.trek-section h4[b-3bkf89k8ql] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
}

.trek-section p[b-3bkf89k8ql] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Description Section - Collapsible */
.description-section[b-3bkf89k8ql] {
    position: relative;
}

.description-text[b-3bkf89k8ql] {
    position: relative;
}

.description-text p[b-3bkf89k8ql] {
    margin: 0;
}

.description-text.collapsed[b-3bkf89k8ql] {
    max-height: 7.8em; /* ~5 lines */
    overflow: hidden;
}

.description-text.expanded[b-3bkf89k8ql] {
    max-height: none;
}

.show-more-link[b-3bkf89k8ql] {
    color: #555;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 2px;
}

.show-more-link:hover[b-3bkf89k8ql] {
    color: #333;
}

/* Image Gallery - Horizontal Scroll */
.gallery-section[b-3bkf89k8ql] {
    padding-right: 0; /* Remove right padding to allow scroll to edge */
}

.gallery-wrapper[b-3bkf89k8ql] {
    position: relative;
    overflow: hidden;
}

.image-gallery-scroll[b-3bkf89k8ql] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-right: 16px; /* Space for the fade */
}

.image-gallery-scroll[b-3bkf89k8ql]::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-item[b-3bkf89k8ql] {
    flex: 0 0 calc(42% - 6px); /* ~2.4 images visible, third one ~half visible */
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:first-child[b-3bkf89k8ql] {
    margin-left: 0;
}

.gallery-item:last-child[b-3bkf89k8ql] {
    margin-right: 40px; /* Extra space for the last item behind the fade */
}

.gallery-item:hover[b-3bkf89k8ql] {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item img[b-3bkf89k8ql] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade overlay on the right side */
.gallery-fade[b-3bkf89k8ql] {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 0.8) 30%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none; /* Allow clicks to pass through */
}

/* Itinerary */
.itinerary-list[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-day[b-3bkf89k8ql] {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.itinerary-day:last-child[b-3bkf89k8ql] {
    border-bottom: none;
    padding-bottom: 0;
}

.itinerary-day:first-child[b-3bkf89k8ql] {
    padding-top: 0;
}

.day-number[b-3bkf89k8ql] {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}

.day-details[b-3bkf89k8ql] {
    flex: 1;
    min-width: 0;
}

.day-details strong[b-3bkf89k8ql] {
    display: block;
    font-size: 0.95rem;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.day-details p[b-3bkf89k8ql] {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Included/Excluded Lists */
.included-list[b-3bkf89k8ql],
.excluded-list[b-3bkf89k8ql] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.included-list li[b-3bkf89k8ql],
.excluded-list li[b-3bkf89k8ql] {
    font-size: 0.9rem;
    padding: 12px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-list li i[b-3bkf89k8ql],
.excluded-list li i[b-3bkf89k8ql] {
    font-size: 1rem;
    flex-shrink: 0;
}

.included-list li[b-3bkf89k8ql] {
    background: rgba(40, 167, 69, 0.1);
    color: #1f1f1f;
}

.included-list li i[b-3bkf89k8ql] {
    color: #28a745;
}

.excluded-list li[b-3bkf89k8ql] {
    background: rgba(220, 53, 69, 0.1);
    color: #1f1f1f;
}

.excluded-list li i[b-3bkf89k8ql] {
    color: #dc3545;
}

/* Departure Dates */
.departure-dates[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.departure-item[b-3bkf89k8ql] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.departure-item:hover[b-3bkf89k8ql] {
    border-color: #1b6ec2;
    background: #f5faff;
}

.departure-item.selected[b-3bkf89k8ql] {
    border-color: #1b6ec2;
    background: linear-gradient(135deg, #e3f2fd 0%, #f5faff 100%);
    box-shadow: 0 2px 8px rgba(27, 110, 194, 0.15);
}

.departure-date[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.departure-date strong[b-3bkf89k8ql] {
    font-size: 0.95rem;
    color: #1f1f1f;
}

.departure-date span[b-3bkf89k8ql] {
    font-size: 0.8rem;
    color: #666;
}

.departure-price[b-3bkf89k8ql] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b6ec2;
}

/* Interest Options */
.interest-options[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.interest-item[b-3bkf89k8ql] {
    padding: 0;
}

.interest-item label[b-3bkf89k8ql] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.interest-item label:hover[b-3bkf89k8ql] {
    border-color: #ccc;
    background: white;
}

.interest-item input[type="radio"][b-3bkf89k8ql] {
    width: 20px;
    height: 20px;
    accent-color: #1b6ec2;
    flex-shrink: 0;
}

.interest-item input[type="radio"]:checked + span[b-3bkf89k8ql] {
    color: #1b6ec2;
    font-weight: 500;
}

.interest-item span[b-3bkf89k8ql] {
    font-size: 0.9rem;
    color: #444;
}

/* Interest Form */
.interest-form[b-3bkf89k8ql] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.interest-form .form-group[b-3bkf89k8ql] {
    margin-bottom: 0;
}

.interest-form .form-group > label[b-3bkf89k8ql] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.interest-form .form-control[b-3bkf89k8ql] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.interest-form .form-control:focus[b-3bkf89k8ql] {
    outline: none;
    border-color: #1b6ec2;
}

.interest-form select.form-control[b-3bkf89k8ql] {
    background: white;
    cursor: pointer;
}

.interest-form textarea.form-control[b-3bkf89k8ql] {
    resize: vertical;
    min-height: 100px;
}

.interest-form .form-group label:has(input[type="checkbox"])[b-3bkf89k8ql] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
}

.interest-form input[type="checkbox"][b-3bkf89k8ql] {
    width: 18px;
    height: 18px;
    accent-color: #1b6ec2;
}

.price-summary[b-3bkf89k8ql] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5faff 100%);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

.price-summary strong[b-3bkf89k8ql] {
    font-size: 1.3rem;
    color: #1b6ec2;
}

/* Action Buttons */
.trek-actions[b-3bkf89k8ql] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 16px 24px 16px;
}

.trek-actions .btn[b-3bkf89k8ql] {
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trek-actions .btn i[b-3bkf89k8ql] {
    font-size: 1.1rem;
}

.trek-actions .btn-primary[b-3bkf89k8ql] {
    background: linear-gradient(135deg, #1b6ec2 0%, #1861ac 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(27, 110, 194, 0.3);
}

.trek-actions .btn-primary:hover:not(:disabled)[b-3bkf89k8ql] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 110, 194, 0.4);
}

.trek-actions .btn-primary:disabled[b-3bkf89k8ql] {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

.trek-actions .btn-secondary[b-3bkf89k8ql] {
    background: white;
    color: #1b6ec2;
    border: 2px solid #1b6ec2;
}

.trek-actions .btn-secondary:hover[b-3bkf89k8ql] {
    background: #f5faff;
}

.trek-actions .btn-outline[b-3bkf89k8ql] {
    background: transparent;
    color: #666;
    border: 2px solid #e8e8e8;
}

.trek-actions .btn-outline:hover[b-3bkf89k8ql] {
    border-color: #ccc;
    color: #444;
}

/* Large button modifier */
.btn-large[b-3bkf89k8ql] {
    padding: 16px 24px;
}
/* _content/TrekConnect.Web/Components/Pages/UserUi/Wiki.razor.rz.scp.css */
/* Page Header */
.page-header[b-dq11hlyo3a] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-button[b-dq11hlyo3a] {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary, #1a1a1a);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-button:hover[b-dq11hlyo3a] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Container */
.wiki-container[b-dq11hlyo3a] {
    padding: 0 16px 24px;
    margin: 0 auto;
}

/* Loading */
.loading-container[b-dq11hlyo3a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 16px;
    color: #6b7280;
}

.spinner[b-dq11hlyo3a] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(27, 110, 194, 0.2);
    border-top-color: #1b6ec2;
    border-radius: 50%;
    animation: spin-b-dq11hlyo3a 0.8s linear infinite;
}

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

/* Not Found */
.not-found[b-dq11hlyo3a] {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}

.not-found i[b-dq11hlyo3a] {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.not-found h3[b-dq11hlyo3a] {
    color: #374151;
    margin-bottom: 8px;
}

.not-found p[b-dq11hlyo3a] {
    margin-bottom: 24px;
}

/* Wiki Meta */
.wiki-meta[b-dq11hlyo3a] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #6b7280;
}

.wiki-date i[b-dq11hlyo3a] {
    margin-right: 6px;
}

/* Wiki Content - Markdown Styles */
.wiki-content[b-dq11hlyo3a] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    line-height: 1.7;
    color: #374151;
}

.wiki-content[b-dq11hlyo3a]  h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.wiki-content[b-dq11hlyo3a]  h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 32px 0 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e7eb;
}

.wiki-content[b-dq11hlyo3a]  h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px;
}

.wiki-content[b-dq11hlyo3a]  h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 20px 0 10px;
}

.wiki-content[b-dq11hlyo3a]  p {
    margin: 0 0 16px;
}

.wiki-content[b-dq11hlyo3a]  ul,
.wiki-content[b-dq11hlyo3a]  ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.wiki-content[b-dq11hlyo3a]  li {
    margin-bottom: 8px;
}

.wiki-content[b-dq11hlyo3a]  a {
    color: #1b6ec2;
    text-decoration: none;
}

.wiki-content[b-dq11hlyo3a]  a:hover {
    text-decoration: underline;
}

.wiki-content[b-dq11hlyo3a]  blockquote {
    margin: 16px 0;
    padding: 12px 20px;
    background: #f8fafc;
    border-left: 4px solid #1b6ec2;
    color: #4b5563;
    font-style: italic;
}

.wiki-content[b-dq11hlyo3a]  code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
}

.wiki-content[b-dq11hlyo3a]  pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

.wiki-content[b-dq11hlyo3a]  pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.wiki-content[b-dq11hlyo3a]  table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.wiki-content[b-dq11hlyo3a]  th,
.wiki-content[b-dq11hlyo3a]  td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.wiki-content[b-dq11hlyo3a]  th {
    background: #f9fafb;
    font-weight: 600;
}

.wiki-content[b-dq11hlyo3a]  hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

.wiki-content[b-dq11hlyo3a]  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .wiki-container[b-dq11hlyo3a] {
        padding: 0 12px 20px;
    }

    .wiki-content[b-dq11hlyo3a] {
        padding: 16px;
        border-radius: 12px;
    }

    .wiki-content[b-dq11hlyo3a]  h1 {
        font-size: 1.5rem;
    }

    .wiki-content[b-dq11hlyo3a]  h2 {
        font-size: 1.25rem;
    }
}
