#container {
	background:#FFFFFF;
/*	min-width:1000px;
	width:1000px;
	text-align:left;
	border:1px solid rgb(38,38,124);
	border-bottom:0px;
	margin:0px;
	padding:0px;	*/
}

#container #header {
	color:rgb(38,38,124);
/*	color:#FFFFFF;
	background: rgb(38,38,124);
	background: linear-gradient(119deg, rgba(38,38,124, 1) 32%, rgba(191, 231, 146, 1) 100%);
	background: rgb(169, 227, 250);	*/
	background: linear-gradient(119deg, rgba(169, 227, 250, 1) 32%, rgba(191, 231, 146, 1) 100%);
	padding:0px 20px 0px 20px;
	margin-bottom: 10px;
	font-weight:bold;
	font-size:.85em;
	height:80px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	box-sizing:border-box;
	column-gap:10px;
}

.step-list {
    margin: 0;
    padding: 0;
}

.step-list-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.step-list-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    font-weight: 600;
}

.step-list-item.completed:not(.active) {
    border-color: rgba(13, 110, 253, 0.35);
    color: rgba(13, 110, 253, 0.75);
    background-color: rgba(13, 110, 253, 0.05);
}

.step-panel {
    animation: fadeIn 0.2s ease-in;
}

.text-uppercase-input {
    text-transform: uppercase;
}

.radio-inline {
	position: relative;
	display: inline-block;
	padding-left: 2rem;
	margin-bottom: 0;
	font-weight: 500;
	vertical-align: middle;
	cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-section-title {
    margin-bottom: 1em;
}

.review-summary {
    display: grid;
    grid-template-columns: minmax(250px, 360px) minmax(320px, 1fr);
    column-gap: 1.25rem;
    row-gap: 0.25rem;
    margin: 0;
}

.review-summary .summary-label {
    margin: 0;
    font-weight: 600;
    line-height: 1.45;
    width: 100%;
    margin-top: 0;
}

.review-summary .summary-value {
    margin: 0;
    line-height: 1.45;
    word-break: break-word;
}

.review-photo-card {
    width: min(100%, 220px);
    padding: 0.75rem;
    border: 1px solid #dbe3ef;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 0.25rem 0.9rem rgba(31, 55, 86, 0.08);
}

.review-photo-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0.5rem;
    background: #f1f4f8;
}

.review-photo-caption {
    padding-top: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.table-person {
    width: min(100%, var(--bs-breakpoint-md));
}

.form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    border: 2px solid #c2c7d3;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-check-input:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.2);
}

.form-check-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-control:not(:disabled):not([readonly]):hover,
.form-select:not(:disabled):hover {
    border-color: #0d6efd;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

:root {
    --accent: #0d6efd;
    --radius: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
select,
textarea {
    border: 1px solid #c2c7d3;
    border-radius: var(--radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

input:hover:not(:disabled),
select:hover:not(:disabled),
textarea:hover:not(:disabled) {
    border-color: var(--accent);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-group {
    border-radius: var(--radius);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.form-group:focus-within {
    background: #f8fbff;
    border-color: var(--accent);
}

[aria-invalid="true"],
.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.2);
}

:disabled,
input[readonly] {
    background: #f5f6f8;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-check-input:focus-visible + label {
    outline: 2px dashed var(--accent);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

@media (forced-colors: active) {
    :focus-visible {
        outline: 2px solid Highlight;
    }
}

.form-control:not(:disabled):not([readonly]):hover,
.form-select:not(:disabled):hover {
    border-color: #0d6efd;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 575.98px) {
    .review-summary {
        grid-template-columns: 1fr;
    }
}

/* Responsive Table */
.rwd-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
}

.rwd-table-header,
.rwd-table-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #dee2e6;
}

.rwd-table-header {
    background-color: #f8f9fa;
    font-weight: 600;
}

.rwd-table-cell {
    padding: 0.75rem;
    text-align: left;
}

.rwd-table-row:last-child {
    border-bottom: 0;
}

.rwd-table-footer {
    padding: 0.75rem;
    background-color: #f8f9fa;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

@media (max-width: 767.98px) {
    .rwd-table-header {
        display: none;
    }

    .rwd-table-row {
        grid-template-columns: 1fr;
    }

    .rwd-table-cell {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid #dee2e6;
    }

    .rwd-table-cell:before {
        content: attr(data-label);
        font-weight: 600;
        padding-right: 1rem;
    }

    .rwd-table-row:last-child .rwd-table-cell:last-child {
        border-bottom: 0;
    }
}
