/* /Grid/AppDataGrid.razor.rz.scp.css */
/* Loading state — keep header filters usable while body reloads */
[b-nc3yrqizw7] .loading-grid .mud-table-body {
    filter: blur(1px);
    pointer-events: none;
    user-select: none;
    transition: filter .2s ease;
}

[b-nc3yrqizw7] .loading-grid .mud-table-head {
    pointer-events: auto;
    user-select: auto;
    filter: none;
}


/* Main grid container */
[b-nc3yrqizw7] .admin-grid {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
}
[b-nc3yrqizw7] .admin-grid table {
    table-layout: auto !important;
    width: max-content;
    min-width: 100%;
}
[b-nc3yrqizw7] .admin-grid th {
    white-space: nowrap;
}
/* Table */
[b-nc3yrqizw7] .admin-grid .mud-table {
    background: white;
}


/* Header */
[b-nc3yrqizw7] .admin-grid .mud-table-head {
    background: #111827;
}
[b-nc3yrqizw7] .mud-table-head th {
    padding-left: 12px;
    padding-right: 12px;
}

[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-table-cell {
    background: #111827;
    color: white;

    padding: 12px 14px;

    font-size: 14px;
    font-weight: 600;

    border-left: 1px solid rgba(255,255,255,.15);

    vertical-align: top;
}


[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-table-cell:last-child {
    border-left: none;
}


/* Header filter area */
[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-input-control {
    margin-top: 8px;
}


[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-input {
    background: white;
    border-radius: 8px;
    color: #334155;
}


[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-input-outlined-border {
    border-color: #cbd5e1;
}


/* Select filter */
[b-nc3yrqizw7] .admin-grid .mud-table-head .mud-select {
    background: white;
    border-radius: 8px;
}


/* Body cells */
[b-nc3yrqizw7] .admin-grid .mud-table-body .mud-table-cell {
    padding: 12px 14px;

    font-size: 14px;

    border-left: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;

    vertical-align: middle;
}


[b-nc3yrqizw7] .admin-grid .mud-table-body .mud-table-cell:last-child {
    border-left: none;
}


/* Alternate rows */
[b-nc3yrqizw7] .admin-grid .mud-table-body .mud-table-row:nth-child(even) {
    background: #fafafa;
}


/* Hover */
[b-nc3yrqizw7] .admin-grid .mud-table-body .mud-table-row:hover {
    background: #f8fafc;
}


/* Sticky header */
[b-nc3yrqizw7] .admin-grid .mud-table-head {
    position: sticky;
    top: 0;
    z-index: 2;
}


/* Long text columns */
[b-nc3yrqizw7] .admin-grid .mud-table-body .mud-table-cell {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Grid/GridColumn.razor.rz.scp.css */
[b-cxvvgqsjcc] .grid-header-wrapper {
    display:inline-flex;
    flex-direction: column;
    gap: 8px;

    min-height: 70px;

    padding: 4px 2px;
}

[b-cxvvgqsjcc] .grid-title-content {
    color: whitesmoke;
    font-weight: 600;
}

[b-cxvvgqsjcc] .grid-title-content:hover {
    color: #2563eb;
}


[b-cxvvgqsjcc] .grid-header-filter .mud-input-control {
    background: white;
}


[b-cxvvgqsjcc] .grid-header-filter .mud-input-outlined-border {
    border-color: #cbd5e1;
    border-radius: 8px;
}


[b-cxvvgqsjcc] .grid-header-filter .mud-input-slot,
[b-cxvvgqsjcc] .grid-header-filter input {
    color: #334155;
    font-size: 14px;
}


[b-cxvvgqsjcc] .grid-header-filter input::placeholder {
    color: #94a3b8;
}


[b-cxvvgqsjcc] .grid-header-filter .mud-select-input {
    color: #334155;
    font-size: 14px;
}

[b-cxvvgqsjcc] .grid-header-filter .mud-input-adornment {
    color: #64748b;
}

[b-cxvvgqsjcc] .grid-header-filter .mud-input-outlined:hover .mud-input-outlined-border {
    border-color: #94a3b8;
}

[b-cxvvgqsjcc] .grid-header-filter .mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: #2563eb;
}

[b-cxvvgqsjcc] .grid-column-filter select {
    width: 100%;
    height: 36px;

    padding: 0 36px 0 12px;

    font-size: 14px;
    color: #334155;

    background-color: white;

    border: 1px solid #cbd5e1;
    border-radius: 8px;

    outline: none;

    appearance: none;

    cursor: pointer;

    transition: border-color .15s ease,
    box-shadow .15s ease;
}

[b-cxvvgqsjcc] .grid-column-filter select:hover {
    border-color: #94a3b8;
}

[b-cxvvgqsjcc] .grid-column-filter select:focus {
    border-color: #2563eb;

    box-shadow: 0 0 0 1px #2563eb;
}

[b-cxvvgqsjcc] .grid-column-filter option {
    color: #334155;
    background: white;
}

[b-cxvvgqsjcc] .grid-native-select {
    position: relative;
}


[b-cxvvgqsjcc] .grid-native-select::after {
    content: "⌄";

    position: absolute;

    right: 12px;
    top: 50%;

    transform: translateY(-55%);

    color: #64748b;

    pointer-events: none;

    font-size: 18px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-v8q5m4zhkd] {
	position: relative;
	display: flex;
	flex-direction: column;
}

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

.sidebar[b-v8q5m4zhkd] {
	background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

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

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

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

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

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

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

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

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

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

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

	.top-row[b-v8q5m4zhkd], article[b-v8q5m4zhkd] {
		padding-left: 2rem !important;
		padding-right: 1.5rem !important;
	}
}
/* /Pages/Admin/ContactUsRequests/ContactUsRequestsPage.razor.rz.scp.css */
.loading-grid[b-kme4uxazhj]{
    filter: blur(2px);
    transition: filter .2s ease;
}
/* /Pages/Admin/Layout/AdminSidebar.razor.rz.scp.css */
.sidebar-link[b-ycw99y7con] {

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    border-radius: 14px;

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: all .3s ease;

}


.sidebar-link:hover[b-ycw99y7con] {

    background: rgba(255,255,255,.12);

    transform: translateX(-8px);

}


/* آیکن */
.sidebar-icon[b-ycw99y7con] {

    width: 34px;
    height: 34px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:10px;

    background: rgba(255,255,255,.15);

    transition:.3s;

}


/* متن */
.sidebar-title[b-ycw99y7con] {

    color:white;

}


/* آیتم فعال */
.sidebar-link.active[b-ycw99y7con] {

    background:
            linear-gradient(
                    90deg,
                    #2563eb,
                    #4f46e5
            );

    box-shadow:
            0 8px 20px rgba(37,99,235,.35);

}


/* تغییر آیکن در حالت فعال */
.sidebar-link.active .sidebar-icon[b-ycw99y7con] {

    background: rgba(255,255,255,.25);

}
/* /Pages/Common/Base/UserPlateSelectorComponent.razor.rz.scp.css */
[b-4yxswpsark] .new-plate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.75rem 1.25rem;

    border: 2px solid #86efac;
    border-radius: 9999px;

    background: #fff;
    color: #15803d;

    font-size: 0.95rem;
    font-weight: 700;

    cursor: pointer;

    transition:
            background-color .2s ease,
            color .2s ease,
            transform .15s ease,
            box-shadow .2s ease;
}

.new-plate-btn:hover[b-4yxswpsark] {
    background: #dcfce7;
    color: #4ade80;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.new-plate-btn:active[b-4yxswpsark] {
    transform: scale(.97);
}

.new-plate-btn:focus-visible[b-4yxswpsark] {
    outline: 3px solid rgba(59, 130, 246, .35);
    outline-offset: 2px;
}

.new-plate-btn i[b-4yxswpsark] {
    font-size: 0.9rem;
}
.new-plate-btn:disabled[b-4yxswpsark] {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: .8;
}

.new-plate-btn:disabled:hover[b-4yxswpsark] {
    background: #f3f4f6;
    color: #9ca3af;
    box-shadow: none;
}

.add-plate-container[b-4yxswpsark] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.add-plate-btn[b-4yxswpsark] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    align-self: center;

    margin-top: 1rem;
    padding: .75rem 1.5rem;

    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    border-radius: .75rem;

    font-size: .95rem;
    font-weight: 600;

    cursor: pointer;
    transition: all .2s ease;
}

.add-plate-btn:hover[b-4yxswpsark] {
    background: #dbeafe;
    border-color: #60a5fa;
    color: #1e40af;

    transform: translateY(-1px);
}

.add-plate-btn:active[b-4yxswpsark] {
    transform: scale(.98);
}

.add-plate-btn:disabled[b-4yxswpsark] {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.add-plate-btn i[b-4yxswpsark] {
    font-size: .95rem;
}

.new-plate-wrapper[b-4yxswpsark] {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.new-plate-content[b-4yxswpsark] {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
            opacity .25s ease,
            transform .35s ease;
}

.new-plate-wrapper.expanded[b-4yxswpsark] {
    grid-template-rows: 1fr;
}

.new-plate-wrapper.expanded .new-plate-content[b-4yxswpsark] {
    opacity: 1;
    transform: translateY(0);
}

.plate-card[b-4yxswpsark] {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    cursor: pointer;
    background: white;

    transition:
            border-color .25s ease,
            box-shadow .25s ease,
            transform .25s ease;
}

.plate-card:hover[b-4yxswpsark] {
    border-color: #93c5fd;
    transform: translateY(-2px);
}

.plate-card.selected[b-4yxswpsark] {
    border-color: #22c55e;
    box-shadow:
            0 0 0 3px rgba(34, 197, 94, .12),
            0 10px 25px rgba(34, 197, 94, .15);
}
.plate-card.selected[b-4yxswpsark]::after {
    content: "✓";
    position: absolute;

    top: .5rem;
    left: .75rem;

    color: #16a34a;
    font-size: 1.25rem;
    font-weight: 700;
}
.plate-card[b-4yxswpsark]  .plate-input {
    pointer-events: none;
}
/* /Pages/Common/DatePicker/AppDatePicker.razor.rz.scp.css */
[b-ery4ymefiz] input.app-date-picker-input,
[b-ery4ymefiz] .app-date-picker-input {
    width: 100% !important;
    height: 3rem !important;
    margin-top: 0.5rem !important;
    padding: 0 1rem !important;
    border: 1px solid transparent !important;
    border-radius: 9999px !important;
    background: #F5F5F5 !important;
    color: #404040 !important;
    text-align: center !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

[b-ery4ymefiz] input.app-date-picker-input:hover,
[b-ery4ymefiz] .app-date-picker-input:hover {
    border-color: transparent !important;
    background: #F5F5F5 !important;
}

[b-ery4ymefiz] input.app-date-picker-input:focus,
[b-ery4ymefiz] .app-date-picker-input:focus {
    outline: none !important;
    border-color: #d1d5db !important;
    background: #F5F5F5 !important;
    box-shadow: none !important;
}

[b-ery4ymefiz] input.app-date-picker-input:disabled,
[b-ery4ymefiz] .app-date-picker-input:disabled {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border-color: #e5e7eb !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}
/* /Pages/Common/DatePicker/AppDateRangePicker.razor.rz.scp.css */
.app-date-range-picker--compact[b-jfixoktowc] {
    min-width: 13rem;
}

.app-date-range-picker__inputs[b-jfixoktowc] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.app-date-range-picker__field[b-jfixoktowc] {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.app-date-range-picker__field-label[b-jfixoktowc] {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1;
}

.app-date-range-picker__separator[b-jfixoktowc] {
    flex: 0 0 auto;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.875rem;
    padding-top: 0.125rem;
}

.app-date-range-picker--compact .app-date-range-picker__separator[b-jfixoktowc] {
    padding-top: 0;
}

.app-date-picker-label--compact[b-jfixoktowc] {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

[b-jfixoktowc] input.app-date-picker-input,
[b-jfixoktowc] .app-date-picker-input {
    width: 100% !important;
    padding: 0 0.75rem !important;
    border: 1px solid transparent !important;
    background: #F5F5F5 !important;
    color: #404040 !important;
    text-align: center !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

[b-jfixoktowc] input.app-date-picker-input--compact,
[b-jfixoktowc] .app-date-picker-input--compact {
    height: 2.25rem !important;
    margin-top: 0 !important;
    font-size: 0.75rem !important;
    border-radius: 0.5rem !important;
}

[b-jfixoktowc] input.app-date-picker-input:focus,
[b-jfixoktowc] .app-date-picker-input:focus {
    outline: none !important;
    border-color: #d1d5db !important;
    background: #F5F5F5 !important;
    box-shadow: none !important;
}

[b-jfixoktowc] input.app-date-picker-input:not(.app-date-picker-input--compact),
[b-jfixoktowc] .app-date-picker-input:not(.app-date-picker-input--compact) {
    height: 3rem !important;
    margin-top: 0.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 9999px !important;
}

[b-jfixoktowc] input.app-date-picker-input:disabled,
[b-jfixoktowc] .app-date-picker-input:disabled {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border-color: #e5e7eb !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}

.app-date-picker-label.text-sm.font-bold.text-customBlack[b-jfixoktowc] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #404040;
}
/* /Pages/Common/Input/AppNumericRangePicker.razor.rz.scp.css */
.app-numeric-range-picker--compact[b-yqlqa5w1cl] {
    min-width: 11rem;
}

.app-numeric-range-picker__label[b-yqlqa5w1cl] {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #404040;
    margin-bottom: 0.5rem;
}

.app-numeric-range-picker__inputs[b-yqlqa5w1cl] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.app-numeric-range-picker__field[b-yqlqa5w1cl] {
    flex: 1 1 0;
    min-width: 0;
}

.app-numeric-range-picker__separator[b-yqlqa5w1cl] {
    flex: 0 0 auto;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.875rem;
}

[b-yqlqa5w1cl] .app-numeric-range-picker__input .mud-input-root {
    background: white;
}

[b-yqlqa5w1cl] .app-numeric-range-picker--compact .mud-input-root {
    min-height: 2.25rem;
}

[b-yqlqa5w1cl] .app-numeric-range-picker--compact .mud-input-slot {
    font-size: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

[b-yqlqa5w1cl] .app-numeric-range-picker--compact .mud-input-outlined-border {
    border-radius: 0.5rem;
}
/* /Pages/Common/Input/PlateDisplay.razor.rz.scp.css */
.plate-display__container[b-yc2i56bnhq] {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.25rem;
}

.plate-display__part[b-yc2i56bnhq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 2rem;
    padding: 0 0.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    line-height: 1;
}

.plate-display__part--wide[b-yc2i56bnhq] {
    min-width: 2.5rem;
}

.plate-display__letter[b-yc2i56bnhq] {
    min-width: 1.75rem;
}

.plate-display__ir[b-yc2i56bnhq] {
    flex-direction: column;
    gap: 0;
    min-width: 2rem;
    padding: 0.125rem 0.25rem;
    font-size: 0.625rem;
}

.plate-display__ir-label[b-yc2i56bnhq] {
    font-size: 0.5rem;
    font-weight: 600;
    line-height: 1;
}

.plate-display--compact .plate-display__part[b-yc2i56bnhq] {
    height: 1.75rem;
}
/* /Pages/Common/Input/PlateInput.razor.rz.scp.css */
.plate-input[b-fl1693w837] {
    border-width: 2px;
    border-color: rgb(209 213 219);
    background-color: rgb(255 255 255);
    border-radius: 0.75rem;
    padding: 1rem;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
    .plate-input[b-fl1693w837] {
        border-radius: 1rem;
        padding: 1.5rem;
    }
}
@media (max-width: 767px) {
    [b-fl1693w837] .plate-icon {
        display: none;
    }
}
[b-fl1693w837] .plate-control {
    height: 3rem;
    width: 100%;
    background-color: rgb(255 255 255);
    border: 2px solid rgb(209 213 219);
    font-size: 1.125rem;
    font-weight: 700;
    color: #404040;
    text-align: center;
    border-radius: 0.375rem;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
}

.plate-container[b-fl1693w837] {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

@media (min-width: 768px) {
    .plate-container[b-fl1693w837] {
        flex-direction: row-reverse;
        gap: 1rem;
    }
}

[b-fl1693w837] .plate-icon {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 1.5rem;
    height: 3rem;
    transform: translateY(-50%);
}

[b-fl1693w837] .plate-control:disabled {
    background-color: rgb(243 244 246);
    cursor: inherit;
    opacity: 0.7;
}

.plate-label[b-fl1693w837] {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #404040;
}

.plate-input--compact[b-fl1693w837] {
    border-width: 0;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    width: 100%;
    min-width: 11rem;
}

.plate-input--compact[b-fl1693w837]  .plate-container {
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.plate-input--compact[b-fl1693w837]  .plate-control {
    height: 2rem;
    font-size: 0.75rem;
    border-width: 1px;
    padding: 0;
}

.plate-input--compact[b-fl1693w837]  .plate-icon {
    display: none;
}
/* /Pages/Inquiries/Complications/HighwayTollDebtCard.razor.rz.scp.css */
.highway-toll-card[b-c1hakprk7h] {
    margin: 1.5rem 0;
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .highway-toll-card[b-c1hakprk7h] {
        padding: 2rem;
    }
}

.highway-toll-success[b-c1hakprk7h] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 1.5rem;
    background: #E5F5EC;
}

.highway-toll-success-text[b-c1hakprk7h] {
    color: #14BA59;
    font-size: .875rem;
    font-weight: 700;
}

.highway-toll-amount-card[b-c1hakprk7h] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid #d1fae5;
    border-radius: 1rem;
    background: #f0fdf4;
}

.highway-toll-amount[b-c1hakprk7h] {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}

.highway-toll-price[b-c1hakprk7h] {
    color: #15803d;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
}

.highway-toll-currency[b-c1hakprk7h] {
    color: #15803d;
    font-weight: 500;
}

.highway-toll-caption[b-c1hakprk7h] {
    margin-top: .5rem;
    color: #6b7280;
    font-size: .875rem;
}

.highway-toll-icon[b-c1hakprk7h] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}

.highway-toll-icon-svg[b-c1hakprk7h] {
    width: 1.75rem;
    height: 1.75rem;
    color: #16a34a;
}
/* /Pages/Inquiries/Complications/HighwayTollForm.razor.rz.scp.css */
.payment-btn[b-7n0hekefxe] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    width: 100%;
    min-height: 52px;

    padding: .85rem 1.5rem;

    border: none;
    border-radius: 14px;

    background: #16A34A;
    color: #fff;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;
    transition: all .2s ease;
}

.payment-btn:hover[b-7n0hekefxe] {
    background: #15803D;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, .25);
}

.payment-btn:active[b-7n0hekefxe] {
    transform: translateY(0);
    box-shadow: none;
}

.payment-btn:focus-visible[b-7n0hekefxe] {
    outline: 3px solid rgba(22, 163, 74, .25);
    outline-offset: 3px;
}

.payment-btn:disabled[b-7n0hekefxe] {
    background: #D1D5DB;
    color: #6B7280;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
