/* _content/ParkingApp/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-2u64epft2j] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-2u64epft2j] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ParkingApp/Components/Pages/Parking.razor.rz.scp.css */
.parking-workspace[b-x1wchjm30k] {
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}

.parking-header[b-x1wchjm30k] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.parking-shell[b-x1wchjm30k] {
    min-height: 0;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
    width: 100%;
}

.parking-sidebar[b-x1wchjm30k] {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    padding-right: 2px;
}

.parking-card[b-x1wchjm30k] {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.parking-section-title[b-x1wchjm30k] {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.parking-map-panel[b-x1wchjm30k] {
    min-width: 0;
    min-height: 0;
    width: 100%;
}

.parking-map-card[b-x1wchjm30k] {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 10px;
    min-height: 0;
    width: 100%;
}

.parking-map-grid[b-x1wchjm30k] {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) 360px;
    gap: 10px;
    min-height: 0;
    height: 100%;
    align-items: stretch;
    width: 100%;
}

.parking-map-frame[b-x1wchjm30k] {
    min-height: 0;
    border: 1px solid #d8dce3;
    border-radius: 16px;
    background: #eef1f4;
    padding: 8px;
    overflow: auto;
    width: 100%;
}

.parking-map-stage[b-x1wchjm30k] {
    width: 100%;
    min-width: 0;
    min-height: 0;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 6px;
}

.parking-map-svg[b-x1wchjm30k] {
    width: 100%;
    height: auto;
    display: block;
    background: #f8f8f8;
    border-radius: 14px;
    flex: 0 0 auto;
    max-width: 1400px;
    min-width: 980px;
    aspect-ratio: 1400 / 980;
}

.parking-calendar-panel[b-x1wchjm30k] {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.parking-calendar-body[b-x1wchjm30k] {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-top: 12px;
}

.week-reservation-list[b-x1wchjm30k] {
    display: grid;
    gap: 10px;
    padding-bottom: 14px;
}

.parking-toolbar-grid[b-x1wchjm30k] {
    display: grid;
    gap: 12px;
}

.parking-badges[b-x1wchjm30k] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.parking-stats[b-x1wchjm30k] {
    display: grid;
    gap: 8px;
}

.stats-row[b-x1wchjm30k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

    .stats-row:last-child[b-x1wchjm30k] {
        border-bottom: none;
    }

.profile-hero[b-x1wchjm30k] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f4 0%, #ffffff 52%, #fff2ee 100%);
    border: 1px solid #f3d2ca;
    padding: 12px;
}

    .profile-hero[b-x1wchjm30k]::after {
        content: "";
        position: absolute;
        right: -42px;
        top: -42px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(225,73,50,0.15) 0%, rgba(225,73,50,0.03) 60%, transparent 72%);
        pointer-events: none;
    }

.profile-topbar[b-x1wchjm30k] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
}

.profile-brand img[b-x1wchjm30k] {
    height: 26px;
    display: block;
    background: white;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.profile-timebox[b-x1wchjm30k] {
    border-radius: 14px;
    border: 1px solid #f0d7d1;
    background: rgba(255,255,255,0.94);
    padding: 10px 12px;
    min-width: 0;
}

.profile-timebox-date[b-x1wchjm30k] {
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 700;
    text-transform: capitalize;
}

.profile-timebox-time[b-x1wchjm30k] {
    margin-top: 4px;
    font-size: 1.9rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.profile-main[b-x1wchjm30k] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.user-photo[b-x1wchjm30k] {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
}

.user-photo-fallback[b-x1wchjm30k] {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: linear-gradient(135deg, #e14932, #f06a4d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(225, 73, 50, 0.24);
}

.user-info[b-x1wchjm30k] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-info-label[b-x1wchjm30k] {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.user-name[b-x1wchjm30k] {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    word-break: break-word;
}

.user-email[b-x1wchjm30k] {
    color: #6b7280;
    word-break: break-word;
    margin-top: 4px;
    font-size: 0.92rem;
}

.hero-detail-grid[b-x1wchjm30k] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.hero-detail-box[b-x1wchjm30k] {
    border-radius: 12px;
    border: 1px solid #eee5e2;
    background: rgba(255,255,255,0.88);
    padding: 8px 10px;
    min-width: 0;
}

.hero-detail-label[b-x1wchjm30k] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 4px;
}

.hero-detail-value[b-x1wchjm30k] {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    word-break: break-word;
}

.hero-detail-subvalue[b-x1wchjm30k] {
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.hero-detail-subtext[b-x1wchjm30k] {
    margin-top: 2px;
    font-size: 0.75rem;
    color: #6b7280;
}

.helper-chip-row[b-x1wchjm30k] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.profile-status-banner[b-x1wchjm30k] {
    margin-top: 14px;
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

    .profile-status-banner.success[b-x1wchjm30k] {
        background: linear-gradient(180deg, #effcf4 0%, #ffffff 100%);
        border-color: #bbf7d0;
    }

    .profile-status-banner.info[b-x1wchjm30k] {
        background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
        border-color: #bfdbfe;
    }

    .profile-status-banner.warning[b-x1wchjm30k] {
        background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
        border-color: #fed7aa;
    }

.profile-status-title[b-x1wchjm30k] {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.profile-status-text[b-x1wchjm30k] {
    margin-top: 4px;
    color: #4b5563;
    font-size: 0.92rem;
}

.detail-stack[b-x1wchjm30k] {
    display: grid;
    gap: 8px;
}

.detail-row[b-x1wchjm30k] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed #e5e7eb;
}

    .detail-row:last-child[b-x1wchjm30k] {
        border-bottom: none;
    }

.detail-label[b-x1wchjm30k] {
    color: #6b7280;
    min-width: 130px;
}

.detail-value[b-x1wchjm30k] {
    color: #111827;
    font-weight: 700;
    text-align: right;
}

.soft-subcard[b-x1wchjm30k] {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
    background: #fafafa;
}

.week-reservation-item[b-x1wchjm30k] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
}

.day-actions[b-x1wchjm30k] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.calendar-context-box[b-x1wchjm30k] {
    margin-top: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fafafa;
    padding: 12px;
}

.calendar-context-title[b-x1wchjm30k] {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.calendar-context-text[b-x1wchjm30k] {
    color: #6b7280;
    font-size: 0.9rem;
}

.availability-day-list[b-x1wchjm30k] {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.availability-day-item[b-x1wchjm30k] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.availability-day-top[b-x1wchjm30k] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.availability-spot-chips[b-x1wchjm30k] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

@media (max-width: 1600px) {
    .parking-shell[b-x1wchjm30k] {
        grid-template-columns: 290px minmax(0, 1fr);
    }

    .parking-map-grid[b-x1wchjm30k] {
        grid-template-columns: minmax(0, 1.7fr) 340px;
    }
}

@media (max-width: 1280px) {
    .parking-map-grid[b-x1wchjm30k] {
        grid-template-columns: 1fr;
        height: auto;
    }

    .parking-calendar-panel[b-x1wchjm30k] {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .parking-calendar-body[b-x1wchjm30k] {
        overflow: visible;
        max-height: none;
    }
}

@media (max-width: 1180px) {
    .parking-workspace[b-x1wchjm30k] {
        height: auto;
        overflow: visible;
    }

    .parking-shell[b-x1wchjm30k] {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .parking-sidebar[b-x1wchjm30k] {
        overflow: visible;
    }

    .parking-map-card[b-x1wchjm30k] {
        height: auto;
    }

    .parking-map-frame[b-x1wchjm30k] {
        min-height: auto;
    }

    .parking-map-svg[b-x1wchjm30k] {
        min-width: 1100px;
    }
}

@media (max-width: 760px) {
    .profile-topbar[b-x1wchjm30k] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .profile-main[b-x1wchjm30k] {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 12px;
    }

    .hero-detail-grid[b-x1wchjm30k] {
        grid-template-columns: 1fr;
    }

    .profile-timebox[b-x1wchjm30k] {
        min-width: 0;
        width: 100%;
    }

    .user-photo[b-x1wchjm30k],
    .user-photo-fallback[b-x1wchjm30k] {
        width: 72px;
        height: 72px;
    }

    .user-photo-fallback[b-x1wchjm30k] {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .parking-workspace[b-x1wchjm30k] {
        gap: 10px;
    }

    .parking-header[b-x1wchjm30k] {
        align-items: flex-start;
    }

    .parking-map-svg[b-x1wchjm30k] {
        min-width: 980px;
    }
}
