:root {
    --primary: #1a2a3a;
    --secondary: #2c3e50;
    --accent: #2980b9; /* Professional Compliance Blue */
    --bg: #f4f7f6;
    --text: #333;
    --white: #ffffff;
    --light-gray: #eee;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    padding: 0 1.5rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-logo-link {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.main-logo-link:hover {
    opacity: 0.9;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
    margin-left: 1rem;
    justify-content: center;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header-tagline {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-top: 1px;
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1410px;
    justify-content: center;
    gap: 30px;
    padding: 0 2rem;
    margin: 2rem auto 2rem;
}

.hero-images img {
    width: 100%;
    max-width: 450px;
    height: 315px;
    object-fit: cover;
    border-radius: 12px;
    border: 5px solid white;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    margin: 0 auto;
}

@media (max-width: 1300px) {
    .hero-images {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        max-width: 1000px;
        gap: 15px;
    }
    .hero-images img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .hero-images {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.logo-badge {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
    display: block;
    border: none;
}

.header-pill {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.6rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.2s ease;
    border: 2px solid var(--accent);
    min-width: 140px;
    text-align: center;
}

.header-pill:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-1px);
}

.header-right .header-pill.contact-pill {
    background: #e67e22; /* Warm, engaging Orange */
    border-color: #e67e22;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.header-right .header-pill.contact-pill:hover {
    background: transparent;
    color: #e67e22;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.hero {
    padding: 3rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(rgba(26, 42, 58, 0.93), rgba(26, 42, 58, 0.93)), url('logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect for subtlety */
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.intro-section {
    text-align: center;
    margin: 4rem auto;
    padding: 0 1rem;
}

.intro-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary);
    max-width: 850px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3); /* Match blue accent */
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #2471a3;
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
}

.container {
    max-width: 1100px;
    margin: 0.5rem auto 2rem;
    padding: 0 2rem;
}

.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-top: 5px solid var(--accent);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.legal-content {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.legal-nav {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-nav a {
    margin: 0 1.2rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-nav a:hover {
    color: var(--accent);
}

.programs-section {
    margin: 5rem auto 3rem;
    max-width: 1100px;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 0 0.5rem; /* Removed top margin, tightened bottom */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto; /* Removed top margin */
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.program-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent);
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.program-icon {
    font-size: 2rem;
    line-height: 1;
}

.program-content h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.program-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.program-link {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.program-link:hover {
    color: #d35400;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .programs-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
}

.contact-section {
    margin: 3rem auto 0;
    max-width: 620px;
    padding: 0 1rem;
}

.contact-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #e67e22;
    text-align: center;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0 0.4rem;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto 1.2rem;
}

.contact-form {
    text-align: left;
}

.form-message {
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message.info {
    background: #e0f2fe;
    color: #075985;
    border: 1px solid #0ea5e9;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0.7rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.help-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #075985;
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
    cursor: help;
    vertical-align: middle;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.8rem;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
    opacity: 0.7;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.spam-protection {
    margin: 0.5rem 0 1.2rem;
    padding: 0.7rem;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
}

.captcha-placeholder {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Honeypot Obfuscation */
.hp-field {
    display: none !important;
    visibility: hidden !important;
}

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center; /* Changed from flex-end to center for Turnstile alignment */
    margin-top: 0.5rem;
}

.cf-turnstile {
    flex: 0 0 auto;
    min-height: 65px; /* Ensures space for the widget */
}

.submit-button {
    flex: 1;
    height: 50px; /* Explicit height to match Turnstile better */
    background: #e67e22;
    color: white;
    padding: 0 20px; /* Added horizontal padding */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(230, 126, 34, 0.2);
}

.submit-button:hover {
    background: #d35400;
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(230, 126, 34, 0.3);
}

.form-footer {
    margin-top: 0.8rem !important;
    font-size: 0.7rem !important;
    color: #94a3b8 !important;
}

@media (max-width: 768px) {
    .form-actions { flex-direction: column; align-items: stretch; }
    .captcha-box { flex: none; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-card { padding: 1.2rem; }
    .contact-card h2 { font-size: 1.4rem; }
}

/* --- Legal Page Tabs --- */
.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 1rem;
    justify-content: center;
}

.tab-link {
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    border-radius: 6px;
    background: #f1f5f9;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e2e8f0;
}

.tab-link:hover {
    background: #e2e8f0;
    color: var(--accent);
}

.tab-link.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .legal-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .tab-link {
        text-align: center;
    }
}

footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

footer a:hover {
    color: var(--accent);
    border-bottom-color: var(--white);
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.features-list li.missing::before {
    content: "☐";
    color: #cbd5e1;
}

.features-list li.missing {
    color: #94a3b8;
}

.features-list li .badge-missing {
    font-size: 0.6rem;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 800;
}

.hq-badge {
    display: inline-block;
    background: var(--bg);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: 1rem;
    border: 1px solid var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    header {
        height: 70px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
        gap: 0;
    }
    .header-left {
        flex-direction: row;
        width: auto;
        opacity: 1 !important;
        max-height: none !important;
    }
    .header-text {
        display: none;
    }
    .logo-badge {
        height: 45px;
    }
    .header-right {
        width: auto;
        display: flex;
        grid-template-columns: none;
        gap: 0.5rem;
    }
    .header-pill {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
        min-width: 0;
        width: auto;
    }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .hero-images {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 15px;
    }
}

/* --- Modal & Driver Intake Form Styles --- */
.secure-icon {
    font-size: 0.9em;
    margin-left: 4px;
    color: #28a745; /* Secure Green */
    cursor: help;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.4s;
}

.modal-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-close-button:hover,
.modal-close-button:focus {
    color: black;
    text-decoration: none;
}

.intake-form .form-group {
    margin-bottom: 15px;
}

.intake-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.intake-form .form-row .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

/* Flex Utility Classes */
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-exp { flex: 0 0 70px; }
.flex-dob { flex: 0 0 150px; }
.flex-ssn { flex: 0 0 140px; }
.flex-apt { flex: 0 0 100px; }
.flex-state { flex: 0 0 60px; }
.flex-zip { flex: 0 0 90px; }
.flex-class { flex: 0 0 60px; }
.flex-exp-date { flex: 0 0 150px; }

.intake-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="date"],
.intake-form textarea,
.intake-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.intake-form input[type="file"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.intake-form input.intake-invalid,
.intake-form select.intake-invalid,
.intake-form textarea.intake-invalid {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12);
}

.intake-field-error {
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #b91c1c;
}

.intake-address-search {
    border-color: #7dd3fc !important;
    border-width: 2px !important;
    background: #f0f9ff !important;
    color: #0c4a6e;
}
.intake-address-search::placeholder {
    color: #0284c7;
    opacity: 0.9;
}

.intake-form .small-faded-text {
    font-size: 0.8em;
    color: #666;
    margin-left: 5px;
}

.intake-form .form-actions {
    text-align: center;
    margin-top: 20px;
}

.new-driver-intake-button {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    margin-left: 0.5rem;
}

.new-driver-intake-button:hover {
    background-color: transparent !important;
    color: #28a745 !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .intake-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .intake-form .form-row.compact-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .intake-form .form-row .form-group,
    .intake-form .form-row.compact-row .form-group {
        flex: 1 1 100%;
        width: 100%;
    }
    /* On medium-small screens, allow compact items to stay side-by-side if they fit */
    @media (min-width: 480px) {
        .intake-form .form-row.compact-row .form-group.flex-1 { flex: 1; width: auto; }
        .intake-form .form-row.compact-row .form-group.flex-state { flex: 0 0 60px; width: auto; }
        .intake-form .form-row.compact-row .form-group.flex-class { flex: 0 0 60px; width: auto; }
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }

    .intake-form .submit-button {
        min-height: 56px;
        font-size: 1rem;
        padding: 0 18px;
    }
    
    input[type="date"] {
        max-width: none !important; /* Allow full width on mobile */
    }
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* --- Cookie Banner & GDPR Notice --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a2a3a;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-left: 5px solid #e67e22;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #e67e22;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-button {
    background: #e67e22;
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cookie-button.reject {
    background: #4a5568;
}

.cookie-button:hover {
    background: #d35400;
}

.cookie-button.reject:hover {
    background: #2d3748;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

/* --- ADA Compliance / Accessibility --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #e67e22;
    color: white;
    padding: 1rem;
    z-index: 10001;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 800;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
}

.skip-link:focus {
    top: 0;
    clip: auto;
    height: auto;
    width: auto;
    overflow: visible;
}

/* Improved focus states for keyboard navigation */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #e67e22;
    outline-offset: 2px;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 1rem; }
}

/* Utility Classes */
.pt-120 {
    padding-top: 20px !important; /* Reduced from 100px */
}

/* Dashboard Positioning */
.section-header {
    text-align: center;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    position: relative;
    z-index: 10;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-top: 5px solid var(--accent);
    transition: transform 0.3s ease;
}

.card h3 {
    font-size: 1.1rem;
    margin-top: 0;
}

.card p {
    font-size: 0.85rem;
}

/* Endorsements Grid */
.endorsements-details {
    margin-top: 10px;
}

.endorsements-summary {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

.endorsements-summary::-webkit-details-marker {
    display: none;
}

.endorsements-summary:hover {
    color: #e67e22;
}

.endorsements-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #edf2f7;
    margin-top: 5px;
}

.endorsement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.endorsement-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

/* Constrain Date Inputs */
input[type="date"] {
    max-width: 150px;
}
