/* _content/JustParkHere/Web/Components/Account/Pages/ParkingAvailability.razor.rz.scp.css */
.calendar[b-rzyeeo4wsz] {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
}

.calendar-header[b-rzyeeo4wsz] {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	background-color: #f8f9fa;
	font-weight: bold;
	text-align: center;
}

	.calendar-header > div[b-rzyeeo4wsz] {
		padding: 10px;
		border-bottom: 1px solid #ddd;
		border-right: 1px solid #ddd;
	}

.calendar-days[b-rzyeeo4wsz] {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.calendar-day[b-rzyeeo4wsz] {
	min-height: 100px;
	padding: 5px;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	position: relative;
	background-color: #fff;
}

	.calendar-day.other-month[b-rzyeeo4wsz] {
		background-color: #f8f9fa;
		color: #aaa;
	}

	.calendar-day.today[b-rzyeeo4wsz] {
		background-color: #e8f4ff;
	}

.day-number[b-rzyeeo4wsz] {
	font-weight: bold;
}

.day-status[b-rzyeeo4wsz] {
	margin-top: 5px;
	margin-bottom: 5px;
}

.day-actions[b-rzyeeo4wsz] {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
/* _content/JustParkHere/Web/Components/Account/Shared/ManageNavMenu.razor.rz.scp.css */
.account-menu-container[b-w0idq2jj23] {
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	overflow: hidden;
}

.account-menu-header[b-w0idq2jj23] {
	background-color: var(--secondary-color);
	padding: 1.5rem;
	border-bottom: 1px solid #e9ecef;
}

	.account-menu-header h3[b-w0idq2jj23] {
		margin: 0;
		color: var(--primary-color);
		font-size: 1.25rem;
	}

.account-menu-items[b-w0idq2jj23] {
	padding: 1rem 0;
}

.account-menu-item[b-w0idq2jj23] {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	color: var(--gray-700);
	text-decoration: none;
	transition: all 0.2s ease;
}

	.account-menu-item:hover[b-w0idq2jj23] {
		background-color: #f8f9fa;
		color: var(--primary-color);
	}

	.account-menu-item.active[b-w0idq2jj23] {
		background-color: var(--secondary-color);
		color: var(--primary-color);
		font-weight: 500;
		border-left: 4px solid var(--primary-color);
	}

	.account-menu-item i[b-w0idq2jj23] {
		width: 1.5rem;
		text-align: center;
	}

</style >

.nav-item[b-w0idq2jj23] {
	background-color: #f0f2f5;
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 10px;
	transition: background-color 0.3s ease;
	border: 1px solid #c8cfd6; /* Darker border for better definition */
}

	.nav-item:hover[b-w0idq2jj23] {
		background-color: #e2e6ea;
	}

	.nav-item .nav-link[b-w0idq2jj23] {
		color: #212529;
		font-weight: 500;
		text-decoration: none;
	}

		.nav-item .nav-link:hover[b-w0idq2jj23] {
			color: #004494; /* Darker blue on hover for better contrast */
		}

		.nav-item .nav-link.active[b-w0idq2jj23] {
			color: #004494; /* Darker active link color */
			font-weight: 600;
		}
			/* Add a border to the active nav menu item */
			.nav-item .nav-link.active[b-w0idq2jj23]::after {
				content: '';
				display: block;
				width: 100%;
				height: 3px;
				background-color: #004494; /* Darker blue for better visibility */
				margin-top: 5px;
			}

/* Enhanced navigation styles */
.primary-nav-link[b-w0idq2jj23] {
	font-weight: 700;
	letter-spacing: 0.02rem;
	color: #212529;
}

.feature-nav-link[b-w0idq2jj23] {
	background-color: rgba(0, 68, 148, 0.15); /* Darker blue tint for better contrast */
	border: 1px solid rgba(0, 68, 148, 0.5); /* More visible border */
	border-radius: var(--radius-lg);
	font-weight: 600;
	padding: 0.5rem 1.2rem !important;
	transition: all 0.2s ease;
	color: #004494 !important; /* Darker blue text for better contrast */
}

	.feature-nav-link:hover[b-w0idq2jj23] {
		background-color: rgba(0, 68, 148, 0.25);
		transform: translateY(-2px) scale(1.05);
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	}

.auth-btn[b-w0idq2jj23] {
	background-color: #004494; /* Even darker background for better contrast */
	color: white !important;
	font-weight: 600;
	border-radius: var(--radius-lg);
	padding: 0.5rem 1.2rem !important;
	transition: all 0.2s ease;
	border: 1px solid #003366; /* Adding border for definition */
}

	.auth-btn:hover[b-w0idq2jj23] {
		transform: translateY(-2px);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		background-color: #003366; /* Darker on hover */
	}

/* Improved dropdown styling */
.dropdown-menu[b-w0idq2jj23] {
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: 0.5rem 0;
	margin-top: 0.7rem;
	min-width: 240px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow */
	background-color: #ffffff;
	border: 1px solid #c8cfd6; /* Darker border for better definition */
}

.dropdown-item[b-w0idq2jj23] {
	padding: 0.7rem 1.2rem;
	border-radius: var(--radius-md);
	margin: 0.2rem 0.5rem;
	width: calc(100% - 1rem);
	color: #212529;
}

	/* Active state for dropdown items */
	.dropdown-item.active[b-w0idq2jj23] {
		background-color: #d4e5ff; /* Slightly darker blue background */
		color: #004494; /* Darker blue text for better contrast */
		font-weight: 500; /* Adding weight for emphasis */
	}

	.dropdown-item:hover[b-w0idq2jj23] {
		background-color: #e2e6ea; /* Slightly darker hover state */
		color: #004494;
	}
/* _content/JustParkHere/Web/Components/Layout/Footer.razor.rz.scp.css */
.footer[b-o1ny8pisbe] {
	background-color: var(--gray-800);
	color: white;
	padding: 3rem 0 1rem;
	margin-top: 3rem;
}

	.footer h5[b-o1ny8pisbe] {
		color: white;
		font-weight: 600;
		margin-bottom: var(--space-md);
		font-family: 'Poppins', sans-serif;
	}

	.footer p[b-o1ny8pisbe] {
		color: var(--gray-400);
	}

.footer-links[b-o1ny8pisbe] {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.footer-links li[b-o1ny8pisbe] {
		margin-bottom: var(--space-sm);
	}

	.footer-links a[b-o1ny8pisbe] {
		color: var(--gray-400);
		text-decoration: none;
		transition: var(--transition-fast);
	}

		.footer-links a:hover[b-o1ny8pisbe] {
			color: white;
			text-decoration: none;
		}

.footer-bottom[b-o1ny8pisbe] {
	border-top: 1px solid var(--gray-700);
	padding-top: var(--space-lg);
	margin-top: var(--space-xl);
	text-align: center;
}

	.footer-bottom p[b-o1ny8pisbe] {
		color: var(--gray-500);
		font-size: 0.9rem;
		margin: 0;
	}

@media (max-width: 768px) {
	.footer[b-o1ny8pisbe] {
		padding: 2rem 0 1rem;
		text-align: center;
	}

	.footer-links[b-o1ny8pisbe] {
		margin-bottom: var(--space-lg);
	}
}
/* _content/JustParkHere/Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* Modern color palette */
:root[b-w02qmqnsos] {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --top-header-height: 4rem;
}

/* Main layout container */
.page[b-w02qmqnsos] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main[b-w02qmqnsos] {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: var(--top-header-height); /* Add space for fixed top header */
}

/* Main content area */
article.content[b-w02qmqnsos] {
    padding: 2rem;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Error UI */
#blazor-error-ui[b-w02qmqnsos] {
    color-scheme: light;
    background: #fff3cd;
    color: #856404;
    border-top: 3px solid #ffeeba;
    bottom: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    text-align: center;
    font-weight: 500;
}

    #blazor-error-ui .reload[b-w02qmqnsos] {
        color: var(--primary-color);
        margin-left: 0.5rem;
        padding: 0.25rem 0.75rem;
        background-color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.2s;
    }

        #blazor-error-ui .reload:hover[b-w02qmqnsos] {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

    #blazor-error-ui .dismiss[b-w02qmqnsos] {
        cursor: pointer;
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

        #blazor-error-ui .dismiss:hover[b-w02qmqnsos] {
            background-color: rgba(0, 0, 0, 0.2);
        }

/* Page transition animations */
.page[b-w02qmqnsos] {
    transition: opacity 0.5s ease;
    opacity: 1 !important;
}

.page-ready[b-w02qmqnsos] {
    opacity: 1;
}

/* Content transition for smoother page navigation */
#main-content[b-w02qmqnsos] {
    transition: opacity 0.3s ease-out;
}

/* Dark mode support - REMOVED */

/* Responsive adjustments */
@media (max-width: 640.98px) {
    article.content[b-w02qmqnsos] {
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        margin-bottom: 0;
        padding: 1rem;
    }
}

/* Animation for page transitions */
@keyframes fadeIn-b-w02qmqnsos {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article.content[b-w02qmqnsos] {
    animation: fadeIn-b-w02qmqnsos 0.3s ease-out;
}
/* _content/JustParkHere/Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Modern NavMenu styles for top navigation */
.top-nav[b-m88yxn52xw] {
    height: var(--top-header-height);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1000;
}

    .top-nav .container-fluid[b-m88yxn52xw] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1rem;
    }

.navbar-brand[b-m88yxn52xw] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
    padding-right: 1.5rem;
}

    .navbar-brand:hover[b-m88yxn52xw] {
        transform: scale(1.05);
        text-decoration: none;
    }

    .navbar-brand i[b-m88yxn52xw] {
        font-size: 1.75rem;
        margin-right: 0.75rem;
    }

/* Toggle button for mobile */
.navbar-toggler[b-m88yxn52xw] {
    display: none;
    background: transparent;
    border: none;
    color: white !important;
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 0.5rem;
    outline: none !important;
    position: relative;
    z-index: 2000;
}

    .navbar-toggler:hover[b-m88yxn52xw] {
        transform: scale(1.1);
    }

    .navbar-toggler:focus[b-m88yxn52xw],
    .navbar-toggler:active[b-m88yxn52xw] {
        outline: none !important;
        box-shadow: none !important;
    }

/* Navigation links container */
.nav-links[b-m88yxn52xw] {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    color: white !important;
}

/* Main navigation links - Enhanced for better visibility */
.nav-menu[b-m88yxn52xw] {
    display: flex;
    align-items: center;
    gap: 1rem; /* Increased gap for less cluttered appearance */
}

.nav-link[b-m88yxn52xw] {
    color: white !important;
    padding: 0.5rem 1rem; /* Increased horizontal padding */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
    text-decoration: none !important;
    font-weight: 600; /* Slightly reduced font weight */
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

    .nav-link i[b-m88yxn52xw] {
        font-size: 1.1rem;
        margin-right: 0.5rem; /* Consistent spacing between icon and text */
    }

    .nav-link:hover[b-m88yxn52xw] {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .nav-link.active[b-m88yxn52xw] {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    }

/* Nav button - for dropdowns in nav */
.nav-btn[b-m88yxn52xw] {
    background: transparent;
    border: none;
    cursor: pointer;
    width: auto;
    text-align: left;
}

/* Account section */
.account-menu[b-m88yxn52xw] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem; /* Create separation from main nav */
}

/* User dropdown menu */
.dropdown[b-m88yxn52xw] {
    position: relative;
}

.user-menu-btn[b-m88yxn52xw] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius-full);
    color: white !important;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

    .user-menu-btn:hover[b-m88yxn52xw] {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .user-menu-btn i[b-m88yxn52xw] {
        color: white !important;
    }

.user-name[b-m88yxn52xw] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 0.5rem;
}

.dropdown-menu[b-m88yxn52xw] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    display: none;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .dropdown-menu.show[b-m88yxn52xw] {
        display: block !important;
        animation: dropdownFade-b-m88yxn52xw 0.2s ease-out;
    }

.dropdown-item[b-m88yxn52xw] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

    .dropdown-item:hover[b-m88yxn52xw] {
        background-color: var(--gray-100);
        color: var(--primary);
    }

.dropdown-divider[b-m88yxn52xw] {
    height: 1px;
    background-color: var(--gray-200);
    margin: 0.25rem 0;
}

/* Animation for dropdown - Fixed animation */
@keyframes dropdownFade-b-m88yxn52xw {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    /* Show the navbar-toggler on mobile */
    .navbar-toggler[b-m88yxn52xw] {
        display: block !important;
        z-index: 1001;
    }

    /* Fix the nav-links container in mobile view */
    .nav-links[b-m88yxn52xw] {
        position: fixed;
        top: var(--top-header-height);
        left: 0;
        right: 0;
        background: linear-gradient(145deg, var(--primary), var(--primary-dark));
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        z-index: 998;
        transition: transform 0.3s ease, opacity 0.3s ease;
        height: calc(100vh - var(--top-header-height));
        overflow-y: auto;
    }

        /* Fix collapsed state for mobile menu */
        .nav-links.collapsed[b-m88yxn52xw] {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

    /* Fix mobile menu links */
    .nav-menu[b-m88yxn52xw] {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
        padding-top: 0.5rem;
    }

    .nav-link[b-m88yxn52xw] {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        justify-content: flex-start;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

        .nav-link i[b-m88yxn52xw] {
            margin-right: 0.75rem;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

    /* Fix account section on mobile */
    .account-menu[b-m88yxn52xw] {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 1.25rem;
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        padding-top: 1.25rem;
        gap: 0.75rem;
    }

    /* Fix dropdowns on mobile */
    .dropdown[b-m88yxn52xw] {
        width: 100%;
    }

    .user-menu-btn[b-m88yxn52xw] {
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
    }

    .dropdown-menu[b-m88yxn52xw] {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem !important;
        border-radius: 8px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 0.5rem;
    }

    .dropdown-item[b-m88yxn52xw] {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin: 0.2rem 0;
    }
}
/* _content/JustParkHere/Web/Components/Pages/BookParkingSpot.razor.rz.scp.css */
/* Progress Tracker - Same style as in ReservationConfirmation */
.progress-tracker[b-eorzdkn9ly] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

    .progress-tracker[b-eorzdkn9ly]:before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gray-300);
        z-index: 0;
    }

.progress-step[b-eorzdkn9ly] {
    position: relative;
    text-align: center;
    flex: 1;
}

.step-icon[b-eorzdkn9ly] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-400);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.step-label[b-eorzdkn9ly] {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.progress-step.completed .step-icon[b-eorzdkn9ly] {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.progress-step.active .step-icon[b-eorzdkn9ly] {
    border-color: var(--primary);
    border-width: 3px;
    color: var(--primary);
    font-weight: bold;
}

.progress-step.completed .step-label[b-eorzdkn9ly],
.progress-step.active .step-label[b-eorzdkn9ly] {
    color: var(--primary);
    font-weight: 500;
}

/* Booking Form Styles */
.booking-form label[b-eorzdkn9ly] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.booking-form .form-control:focus[b-eorzdkn9ly] {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.booking-form .validation-message[b-eorzdkn9ly] {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Spot Details */
.spot-image[b-eorzdkn9ly] {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
}

    .spot-image img[b-eorzdkn9ly] {
        width: 100%;
        object-fit: cover;
        max-height: 200px;
    }

.parking-rates[b-eorzdkn9ly] {
    background-color: var(--gray-50);
    border-radius: 8px;
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .progress-step .step-label[b-eorzdkn9ly] {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .progress-step .step-label[b-eorzdkn9ly] {
        font-size: 0.6rem;
    }
}
/* _content/JustParkHere/Web/Components/Pages/GenerateQrCode.razor.rz.scp.css */
/* QR Code Page - Modern & Friendly Style */
.qr-code-printable[b-cq6912bkfe] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border: none;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.qr-code-printable:hover[b-cq6912bkfe] {
    transform: translateY(-5px);
}

.qr-code-printable h2[b-cq6912bkfe] {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.qr-code-printable h3[b-cq6912bkfe] {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.qr-code[b-cq6912bkfe] {
    max-width: 300px;
    height: auto;
    border-radius: 0.75rem;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-code-container[b-cq6912bkfe] {
    position: relative;
    display: inline-block;
    background-color: white;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid var(--primary);
}

.qr-code-container[b-cq6912bkfe]::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--accent);
    border-radius: 1.25rem;
    z-index: -1;
}

.instructions[b-cq6912bkfe] {
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    border-left: 4px solid var(--primary);
}

.instructions h4[b-cq6912bkfe] {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructions ol[b-cq6912bkfe] {
    padding-left: 1.25rem;
}

.instructions ol li[b-cq6912bkfe] {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    position: relative;
    padding-left: 0.5rem;
}

.contact[b-cq6912bkfe] {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.contact p[b-cq6912bkfe] {
    margin-bottom: 0;
    font-weight: 500;
}

.contact strong[b-cq6912bkfe] {
    font-weight: 700;
}

/* Print specific styles */
@media print {
    .d-print-none[b-cq6912bkfe] {
        display: none !important;
    }

    body[b-cq6912bkfe] {
        margin: 0;
        padding: 0;
    }

    .qr-code-printable[b-cq6912bkfe] {
        border: none;
        padding: 0;
        box-shadow: none;
        max-width: 100%;
    }

    .qr-code[b-cq6912bkfe] {
        max-width: 350px;
    }
    
    .qr-code-container[b-cq6912bkfe] {
        box-shadow: none;
    }
    
    .instructions[b-cq6912bkfe] {
        border-left: 4px solid var(--primary);
    }
}
/* _content/JustParkHere/Web/Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css - Enhanced version with better contrast and image handling */
.hero-section[b-ttx23mhqje] {
    padding: 5rem 0;
    background-color: var(--gray-50);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.03);
}

    .hero-section h1[b-ttx23mhqje] {
        color: var(--gray-900);
        margin-bottom: 1.8rem;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        letter-spacing: -0.5px;
    }

    .hero-section .lead[b-ttx23mhqje] {
        color: var(--gray-700);
        font-size: 1.3rem;
        max-width: 540px;
        line-height: 1.6;
    }

/* Enhanced CTA group with improved button contrast */
.cta-group[b-ttx23mhqje] {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .cta-group .btn-primary[b-ttx23mhqje] {
        background-color: #0d47a1; /* Darker blue for better contrast */
        color: white;
        border: none;
        font-weight: 600;
        padding: 0.8rem 1.8rem;
        box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
        transition: all 0.3s ease;
    }

        .cta-group .btn-primary:hover[b-ttx23mhqje] {
            background-color: #072e6e;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(13, 71, 161, 0.4);
        }

    .cta-group .btn-outline-primary[b-ttx23mhqje] {
        border: 2px solid #0d47a1;
        color: #0d47a1;
        font-weight: 600;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 0.8rem 1.8rem;
        transition: all 0.3s ease;
    }

        .cta-group .btn-outline-primary:hover[b-ttx23mhqje] {
            background-color: #0d47a1;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(13, 71, 161, 0.2);
        }

/* Enhanced image styling */
.hero-image[b-ttx23mhqje] {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg);
}

    .hero-image:hover[b-ttx23mhqje] {
        transform: perspective(1000px) rotateY(0deg);
    }

.features-section[b-ttx23mhqje] {
    padding: 6rem 0;
    background-color: white;
    position: relative;
}

    .features-section h2[b-ttx23mhqje] {
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--gray-900);
        position: relative;
    }

        .features-section h2[b-ttx23mhqje]:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: #0d47a1;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

.feature-card[b-ttx23mhqje] {
    padding: 2.5rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

    .feature-card:hover[b-ttx23mhqje] {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.feature-icon[b-ttx23mhqje] {
    font-size: 3rem;
    color: #0d47a1;
    margin-bottom: 1.8rem;
    padding: 1.2rem;
    background-color: rgba(13, 71, 161, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3[b-ttx23mhqje] {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.feature-card p[b-ttx23mhqje] {
    color: var(--gray-600);
    line-height: 1.6;
}

.how-it-works-section[b-ttx23mhqje] {
    padding: 6rem 0;
    background-color: var(--gray-50);
    position: relative;
}

    .how-it-works-section h2[b-ttx23mhqje] {
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--gray-900);
        position: relative;
    }

        .how-it-works-section h2[b-ttx23mhqje]:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: #0d47a1;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

.steps-container[b-ttx23mhqje] {
    display: flex;
    gap: 2.5rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .steps-container[b-ttx23mhqje]:after {
        content: '';
        position: absolute;
        top: 1.5rem;
        left: 5rem;
        width: calc(100% - 10rem);
        height: 2px;
        background-color: rgba(13, 71, 161, 0.2);
        z-index: 0;
    }

.step[b-ttx23mhqje] {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number[b-ttx23mhqje] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #0d47a1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

.step-content h4[b-ttx23mhqje] {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
}

.step-content p[b-ttx23mhqje] {
    color: var(--gray-600);
    line-height: 1.6;
}

.earn-section[b-ttx23mhqje] {
    padding: 6rem 0;
    background-color: white;
}

    .earn-section img[b-ttx23mhqje] {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.5s ease;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    }

    .earn-section h2[b-ttx23mhqje] {
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--gray-900);
    }

.earning-benefits[b-ttx23mhqje] {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

    .earning-benefits li[b-ttx23mhqje] {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        color: var(--gray-700);
    }

        .earning-benefits li i[b-ttx23mhqje] {
            color: #0d47a1;
            margin-right: 1rem;
            font-size: 1.25rem;
        }

    .earning-benefits + .btn-primary[b-ttx23mhqje] {
        background-color: #0d47a1;
        color: white;
        border: none;
        font-weight: 600;
        padding: 0.8rem 1.8rem;
        box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3);
        transition: all 0.3s ease;
    }

        .earning-benefits + .btn-primary:hover[b-ttx23mhqje] {
            background-color: #072e6e;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(13, 71, 161, 0.4);
        }

@media (max-width: 991px) {
    .hero-section[b-ttx23mhqje] {
        padding: 4rem 0;
    }

    .steps-container[b-ttx23mhqje] {
        flex-direction: column;
    }

        .steps-container[b-ttx23mhqje]:after {
            display: none;
        }
}

@media (max-width: 576px) {
    .hero-section[b-ttx23mhqje] {
        padding: 3rem 0;
    }

        .hero-section h1[b-ttx23mhqje] {
            font-size: 2.2rem;
        }

    .cta-group[b-ttx23mhqje] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

        .cta-group .btn[b-ttx23mhqje] {
            width: 100%;
            margin-right: 0 !important;
        }
}
/* _content/JustParkHere/Web/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
/* Optional: Style for active state (requires manually clicking) */
.privacy-toc a:active[b-igjdgksmkc],
.privacy-toc a:focus[b-igjdgksmkc] {
	color: #0366d6;
	font-weight: bold;
}

/* Optional: Add padding to sections to prevent header from being hidden under fixed elements */
section[b-igjdgksmkc] {
	scroll-margin-top: 80px; /* Adjust this value based on your header height */
}



/* Privacy Policy Page Styling */
.privacy-page[b-igjdgksmkc] {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	scroll-behavior: smooth;
}

.privacy-header[b-igjdgksmkc] {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 3rem 2rem;
	text-align: center;
	margin-bottom: 2rem;
	border-radius: 0 0 var(--radius-xl) var(--radius-xl);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

	.privacy-header[b-igjdgksmkc]::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

	.privacy-header h1[b-igjdgksmkc] {
		font-family: 'Poppins', sans-serif;
		font-weight: 700;
		margin-bottom: 0.5rem;
		color: white;
	}

	.privacy-header .lead[b-igjdgksmkc] {
		color: rgba(255, 255, 255, 0.9);
		font-size: 1.1rem;
	}

.privacy-container[b-igjdgksmkc] {
	display: flex;
	gap: 2rem;
	padding-bottom: 3rem;
	flex-grow: 1;
}

.privacy-navigation[b-igjdgksmkc] {
	width: 300px;
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.privacy-toc[b-igjdgksmkc] {
	background-color: white;
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	margin-bottom: var(--space-lg);
}

	.privacy-toc h4[b-igjdgksmkc] {
		color: var(--primary);
		font-weight: 600;
		margin-bottom: var(--space-md);
	}

	.privacy-toc ul[b-igjdgksmkc] {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.privacy-toc ul li[b-igjdgksmkc] {
			margin-bottom: 0.75rem;
		}

			.privacy-toc ul li a[b-igjdgksmkc] {
				color: var(--text-secondary);
				text-decoration: none;
				transition: var(--transition-fast);
				display: block;
				padding: 0.35rem 0;
				border-radius: var(--radius-sm);
			}

				.privacy-toc ul li a:hover[b-igjdgksmkc] {
					color: var(--primary);
					background-color: var(--gray-100);
					padding-left: 0.5rem;
					text-decoration: none;
				}

.privacy-content[b-igjdgksmkc] {
	flex: 1;
}

	.privacy-content section[b-igjdgksmkc] {
		background-color: white;
		border-radius: var(--radius-lg);
		padding: var(--space-xl);
		margin-bottom: var(--space-lg);
		box-shadow: var(--shadow-md);
	}

	.privacy-content h2[b-igjdgksmkc] {
		color: var(--primary);
		font-weight: 600;
		margin-bottom: var(--space-md);
		padding-bottom: var(--space-sm);
		border-bottom: 2px solid var(--gray-200);
	}

	.privacy-content h4[b-igjdgksmkc] {
		color: var(--secondary);
		font-weight: 600;
		margin-top: var(--space-lg);
		margin-bottom: var(--space-sm);
	}

	.privacy-content p[b-igjdgksmkc] {
		margin-bottom: var(--space-md);
		line-height: 1.7;
		color: var(--text-secondary);
	}

	.privacy-content ul[b-igjdgksmkc] {
		margin-bottom: var(--space-md);
		padding-left: 1.5rem;
	}

		.privacy-content ul li[b-igjdgksmkc] {
			margin-bottom: 0.5rem;
			color: var(--text-secondary);
		}

			.privacy-content ul li ul[b-igjdgksmkc] {
				margin-top: 0.5rem;
			}

.privacy-footer[b-igjdgksmkc] {
	background-color: var(--gray-100);
	padding: 3rem 0;
	margin-top: 2rem;
}

	.privacy-footer p[b-igjdgksmkc] {
		margin-bottom: var(--space-md);
		color: var(--text-secondary);
	}

	.privacy-footer .btn[b-igjdgksmkc] {
		padding: 0.75rem 2rem;
		font-weight: 600;
		border-radius: var(--radius-full);
	}

/* Responsive styles */
@media (max-width: 992px) {
	.privacy-container[b-igjdgksmkc] {
		flex-direction: column;
	}

	.privacy-navigation[b-igjdgksmkc] {
		width: 100%;
		position: static;
		margin-bottom: var(--space-lg);
	}
}

@media (max-width: 768px) {
	.privacy-header[b-igjdgksmkc] {
		padding: 2.5rem 1.5rem;
	}

	.privacy-content section[b-igjdgksmkc] {
		padding: var(--space-lg);
	}
}

@media (max-width: 576px) {
	.privacy-header[b-igjdgksmkc] {
		padding: 2rem 1rem;
	}

		.privacy-header h1[b-igjdgksmkc] {
			font-size: 2rem;
		}

	.privacy-content section[b-igjdgksmkc] {
		padding: var(--space-md);
	}
}
/* _content/JustParkHere/Web/Components/Pages/ReservationConfirmation.razor.rz.scp.css */
/* Progress Tracker Styles */
.progress-tracker[b-mkrl6tthaa] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.progress-tracker[b-mkrl6tthaa]:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
}

.progress-step[b-mkrl6tthaa] {
    position: relative;
    text-align: center;
    flex: 1;
}

.step-icon[b-mkrl6tthaa] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-400);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.step-label[b-mkrl6tthaa] {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.progress-step.completed .step-icon[b-mkrl6tthaa] {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.progress-step.active .step-icon[b-mkrl6tthaa] {
    border-color: var(--primary);
    border-width: 3px;
    color: var(--primary);
    font-weight: bold;
}

.progress-step.completed .step-label[b-mkrl6tthaa],
.progress-step.active .step-label[b-mkrl6tthaa] {
    color: var(--primary);
    font-weight: 500;
}

/* Payment Method Selection Styles */
.payment-methods[b-mkrl6tthaa] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method[b-mkrl6tthaa] {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .payment-method:hover[b-mkrl6tthaa] {
        border-color: var(--primary-light);
        background-color: rgba(67, 97, 238, 0.03);
    }

    .payment-method.selected[b-mkrl6tthaa] {
        border-color: var(--primary);
        background-color: rgba(67, 97, 238, 0.05);
    }

.payment-icon[b-mkrl6tthaa] {
    margin-right: 15px;
    width: 50px;
    text-align: center;
}

.payment-details[b-mkrl6tthaa] {
    flex: 1;
}

.payment-name[b-mkrl6tthaa] {
    font-weight: 500;
}

.payment-check[b-mkrl6tthaa] {
    font-size: 1.5rem;
}

/* Reservation Summary Styles */
.summary-item[b-mkrl6tthaa] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-label[b-mkrl6tthaa] {
    color: var(--text-secondary);
}

.summary-value[b-mkrl6tthaa] {
    font-weight: 500;
}

.summary-item.total[b-mkrl6tthaa] {
    font-size: 1.2rem;
    font-weight: 600;
}

.secure-payment[b-mkrl6tthaa] {
    border-left: 4px solid var(--success);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .reservation-summary[b-mkrl6tthaa] {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .progress-step .step-label[b-mkrl6tthaa] {
        font-size: 0.7rem;
    }
}
/* _content/JustParkHere/Web/Components/Pages/TermsOfSale.razor.rz.scp.css */


/* Optional: Style for active state (requires manually clicking) */
.privacy-toc a:active[b-biiju844xm],
.privacy-toc a:focus[b-biiju844xm] {
	color: #0366d6;
	font-weight: bold;
}

/* Optional: Add padding to sections to prevent header from being hidden under fixed elements */
section[b-biiju844xm] {
	scroll-margin-top: 80px; /* Adjust this value based on your header height */
}


/* Terms of Sale Page Styling */
.terms-page[b-biiju844xm] {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	scroll-behavior: smooth;
}

.terms-header[b-biiju844xm] {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 3rem 2rem;
	text-align: center;
	margin-bottom: 2rem;
	border-radius: 0 0 var(--radius-xl) var(--radius-xl);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

	.terms-header[b-biiju844xm]::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

	.terms-header h1[b-biiju844xm] {
		font-family: 'Poppins', sans-serif;
		font-weight: 700;
		margin-bottom: 0.5rem;
		color: white;
	}

	.terms-header .lead[b-biiju844xm] {
		color: rgba(255, 255, 255, 0.9);
		font-size: 1.1rem;
	}

.terms-container[b-biiju844xm] {
	display: flex;
	gap: 2rem;
	padding-bottom: 3rem;
	flex-grow: 1;
}

.terms-navigation[b-biiju844xm] {
	width: 300px;
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.terms-toc[b-biiju844xm] {
	background-color: white;
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	margin-bottom: var(--space-lg);
}

	.terms-toc h4[b-biiju844xm] {
		color: var(--primary);
		font-weight: 600;
		margin-bottom: var(--space-md);
	}

	.terms-toc ul[b-biiju844xm] {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.terms-toc ul li[b-biiju844xm] {
			margin-bottom: 0.75rem;
		}

			.terms-toc ul li a[b-biiju844xm] {
				color: var(--text-secondary);
				text-decoration: none;
				transition: var(--transition-fast);
				display: block;
				padding: 0.35rem 0;
				border-radius: var(--radius-sm);
			}

				.terms-toc ul li a:hover[b-biiju844xm] {
					color: var(--primary);
					background-color: var(--gray-100);
					padding-left: 0.5rem;
					text-decoration: none;
				}

.terms-content[b-biiju844xm] {
	flex: 1;
}

	.terms-content section[b-biiju844xm] {
		background-color: white;
		border-radius: var(--radius-lg);
		padding: var(--space-xl);
		margin-bottom: var(--space-lg);
		box-shadow: var(--shadow-md);
	}

	.terms-content h2[b-biiju844xm] {
		color: var(--primary);
		font-weight: 600;
		margin-bottom: var(--space-md);
		padding-bottom: var(--space-sm);
		border-bottom: 2px solid var(--gray-200);
	}

	.terms-content p[b-biiju844xm] {
		margin-bottom: var(--space-md);
		line-height: 1.7;
		color: var(--text-secondary);
	}

	.terms-content ul[b-biiju844xm] {
		margin-bottom: var(--space-md);
		padding-left: 1.5rem;
	}

		.terms-content ul li[b-biiju844xm] {
			margin-bottom: 0.5rem;
			color: var(--text-secondary);
		}

			.terms-content ul li ul[b-biiju844xm] {
				margin-top: 0.5rem;
			}

.terms-footer[b-biiju844xm] {
	background-color: var(--gray-100);
	padding: 3rem 0;
	margin-top: 2rem;
}

	.terms-footer p[b-biiju844xm] {
		margin-bottom: var(--space-md);
		color: var(--text-secondary);
	}

	.terms-footer .btn[b-biiju844xm] {
		padding: 0.75rem 2rem;
		font-weight: 600;
		border-radius: var(--radius-full);
	}

/* Responsive styles */
@media (max-width: 992px) {
	.terms-container[b-biiju844xm] {
		flex-direction: column;
	}

	.terms-navigation[b-biiju844xm] {
		width: 100%;
		position: static;
		margin-bottom: var(--space-lg);
	}
}

@media (max-width: 768px) {
	.terms-header[b-biiju844xm] {
		padding: 2.5rem 1.5rem;
	}

	.terms-content section[b-biiju844xm] {
		padding: var(--space-lg);
	}
}

@media (max-width: 576px) {
	.terms-header[b-biiju844xm] {
		padding: 2rem 1rem;
	}

		.terms-header h1[b-biiju844xm] {
			font-size: 2rem;
		}

	.terms-content section[b-biiju844xm] {
		padding: var(--space-md);
	}
}
/* _content/JustParkHere/Web/Components/Shared/BackButton.razor.rz.scp.css */
.breadcrumb-container[b-awdxuibduh] {
    padding: 0.75rem 0;
    animation: fadeIn-b-awdxuibduh 0.3s ease;
}

.breadcrumb[b-awdxuibduh] {
    margin-bottom: 0;
    font-size: 0.9rem;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item[b-awdxuibduh]::before {
    content: "›";
    color: var(--gray-500);
}

.breadcrumb-item.active[b-awdxuibduh] {
    color: var(--gray-600);
    font-weight: 500;
}

.breadcrumb-item a[b-awdxuibduh] {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .breadcrumb-item a:hover[b-awdxuibduh] {
        color: var(--primary-dark);
        text-decoration: underline;
    }

@keyframes fadeIn-b-awdxuibduh {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/JustParkHere/Web/Components/Shared/Breadcrumb.razor.rz.scp.css */
.breadcrumb-container[b-j0n0gvltqq] {
    padding: 0.75rem 0;
    animation: fadeIn-b-j0n0gvltqq 0.3s ease;
}

.breadcrumb[b-j0n0gvltqq] {
    margin-bottom: 0;
    font-size: 0.9rem;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item[b-j0n0gvltqq]::before {
    content: "›";
    color: var(--gray-500);
}

.breadcrumb-item.active[b-j0n0gvltqq] {
    color: var(--gray-600);
    font-weight: 500;
}

.breadcrumb-item a[b-j0n0gvltqq] {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .breadcrumb-item a:hover[b-j0n0gvltqq] {
        color: var(--primary-dark);
        text-decoration: underline;
    }

@keyframes fadeIn-b-j0n0gvltqq {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/JustParkHere/Web/Components/Shared/LoadingIndicator.razor.rz.scp.css */
.breadcrumb-container[b-bvul32l25w] {
    padding: 0.75rem 0;
    animation: fadeIn-b-bvul32l25w 0.3s ease;
}

.breadcrumb[b-bvul32l25w] {
    margin-bottom: 0;
    font-size: 0.9rem;
    background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item[b-bvul32l25w]::before {
    content: "›";
    color: var(--gray-500);
}

.breadcrumb-item.active[b-bvul32l25w] {
    color: var(--gray-600);
    font-weight: 500;
}

.breadcrumb-item a[b-bvul32l25w] {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .breadcrumb-item a:hover[b-bvul32l25w] {
        color: var(--primary-dark);
        text-decoration: underline;
    }

@keyframes fadeIn-b-bvul32l25w {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/JustParkHere/Web/Components/Shared/Toast.razor.rz.scp.css */
/* Web/Components/Shared/Toast.razor.css */
.toast-container[b-l52p6mgc04] {
    position: fixed;
    z-index: 1050;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.position-bottom-right[b-l52p6mgc04] {
    bottom: 1rem;
    right: 1rem;
}

.position-bottom-left[b-l52p6mgc04] {
    bottom: 1rem;
    left: 1rem;
}

.position-top-right[b-l52p6mgc04] {
    top: 1rem;
    right: 1rem;
}

.position-top-left[b-l52p6mgc04] {
    top: 1rem;
    left: 1rem;
}

.toast[b-l52p6mgc04] {
    opacity: 0;
    min-width: 250px;
    max-width: 350px;
    transition: opacity 0.5s ease;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-visible[b-l52p6mgc04] {
    opacity: 1;
}

.toast-info[b-l52p6mgc04] {
    border-left: 4px solid #0d6efd;
}

.toast-success[b-l52p6mgc04] {
    border-left: 4px solid #198754;
}

.toast-warning[b-l52p6mgc04] {
    border-left: 4px solid #ffc107;
}

.toast-error[b-l52p6mgc04] {
    border-left: 4px solid #dc3545;
}

.toast-header[b-l52p6mgc04] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .toast-header .btn-close[b-l52p6mgc04] {
        margin-left: auto;
        padding: 0.25rem 0.25rem;
        cursor: pointer;
    }

.toast-body[b-l52p6mgc04] {
    padding: 0.75rem;
}
/* _content/JustParkHere/Web/Components/Shared/ToastContainer.razor.rz.scp.css */
/* Web/Components/Shared/Toast.razor.css */
.toast-container[b-rzlrkfqkr3] {
    position: fixed;
    z-index: 1050;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.position-bottom-right[b-rzlrkfqkr3] {
    bottom: 1rem;
    right: 1rem;
}

.position-bottom-left[b-rzlrkfqkr3] {
    bottom: 1rem;
    left: 1rem;
}

.position-top-right[b-rzlrkfqkr3] {
    top: 1rem;
    right: 1rem;
}

.position-top-left[b-rzlrkfqkr3] {
    top: 1rem;
    left: 1rem;
}

.toast[b-rzlrkfqkr3] {
    opacity: 0;
    min-width: 250px;
    max-width: 350px;
    transition: opacity 0.5s ease;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-visible[b-rzlrkfqkr3] {
    opacity: 1;
}

.toast-info[b-rzlrkfqkr3] {
    border-left: 4px solid #0d6efd;
}

.toast-success[b-rzlrkfqkr3] {
    border-left: 4px solid #198754;
}

.toast-warning[b-rzlrkfqkr3] {
    border-left: 4px solid #ffc107;
}

.toast-error[b-rzlrkfqkr3] {
    border-left: 4px solid #dc3545;
}

.toast-header[b-rzlrkfqkr3] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .toast-header .btn-close[b-rzlrkfqkr3] {
        margin-left: auto;
        padding: 0.25rem 0.25rem;
        cursor: pointer;
    }

.toast-body[b-rzlrkfqkr3] {
    padding: 0.75rem;
}
