/* Global Styles */
body {
    font-family: Poppins,sans-serif !important;
}

div.container.mainBox{
	max-width: 1000px !important;
}
div.row{
	margin-right: calc(-.5 * var(--bs-gutter-x)) !important;
    margin-left: calc(-.5 * var(--bs-gutter-x)) !important;
}
div.row input,
div.row select{
	border: 1px solid #d1c8c0 !important;
	border-radius: 5px !important;
	padding: 12px 8px;
}
.form-check{
	padding-left: 0 !important;
}
.form-check label:before{
	border-radius: 50% !important;
}
/* Printable Form Styles (result.html) */
.printable-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    /* Padding for the paper look */
}

/* Header Blue Bar */
.header-bar {
    background-color: #2b3990;
    /* Dark Blue from image */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Section Header Blue Bars */
.section-header {
    background-color: #2b3990;
    color: white;
    padding: 4px 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 2px;
    margin-bottom: 5px;
    font-size: 12px;
}

/* Form Fields in Checkbox Style */
.checkbox-inline {
    display: inline-block;
    margin-right: 15px;
}

.checkbox-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
}

.checkbox-box.checked::after {
    content: '✓';
    position: absolute;
    top: -6px;
    /* Adjusted for smaller box/font if needed but keeping box size standard for visibility */
    left: 1px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

/* Underlines for data */
.data-line {
    border-bottom: 1px solid #000;
    display: inline-block;
    min-width: 50px;
    padding-left: 5px;
    color: #000;
    font-weight: 500;
    font-size: 10px;
    /* Requested 10px font size */
}

.data-line.long {
    width: 100%;
}

/* Layout Specifics */
.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    color: #2b3990;
    line-height: 1;
}

.logo-text span {
    color: #f7941d;
    /* Orange/Gold from image */
}

.company-details {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: right;
    border-left: 1px solid #333;
    padding-left: 15px;
}

/* Boxed Areas */
.photo-box {
    border: 1px solid #000;
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    overflow: hidden;
    /* Ensure image stays within box */
    background-color: #f9f9f9;
}

/* Grid adjustments for printable form */
.row-compact {
    margin-bottom: 5px;
}

.label-bold {
    font-weight: 600;
    font-size: 10px;
}

/* Ensure data lines match */
.data-line {
    border-bottom: 1px solid #000;
    display: inline-block;
    min-width: 50px;
    padding-left: 5px;
    color: #000;
    font-weight: 500;
    font-size: 10px;
    /* Requested 10px font size */
}
.card h2{
	color: #fff !important;
	font-size: 32px;
	margin: 0 !important;
}
.card h2, .card h4{
	font-family: Poppins,sans-serif !important;
}
.card h4{
	font-size: 24px;
}
.card h6{
	font-size: 16px;
	margin: 0 0 8px;
}
.bg-brand {
	background-color: #2b3990 !important;
	color: white;
}

.text-brand {
	color: #2b3990 !important;
}

.btn-brand {
	background-color: #2b3990;
	border-color: #2b3990;
	color: white;
}

.btn-brand:hover {
	background-color: #232f7a;
	border-color: #232f7a;
	color: white;
}
@media screen and (max-width: 767px){
	.logoImg{
		text-align: center;
	}
	.logoImg img{
		max-height: 40px !important;
	}
}

@media print {
    body {
        margin: 0;
        padding: 0;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    @page {
        size: auto;
        margin: 5mm;
    }

    .no-print {
        display: none !important;
    }

    .printable-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border: none;
    }
}