/* Basic Footer Styles */
.footer {
    background-color: #f8f9fa;
    /* Light gray or any preferred background color */
    padding: 20px 0;
    font-size: 14px;
    color: #333;
}

.footer .container {
    max-width: 1200px;
    /* or use Bootstrap's container if using Bootstrap */
    margin: 0 auto;
    padding: 0 15px;
}

/* Use flex to line up items horizontally */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping on small screens */
    align-items: center;
    /* vertically center content */
    justify-content: space-between;
    /* spread out items across the row */
    gap: 10px;
}

/* Inline list for the footer menu (Terms, Privacy, Contact) */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* horizontal layout */
    gap: 20px;
    /* spacing between items */
}

.footer-menu li {
    display: inline-block;
    /* optional if 'display: flex;' is on the UL */
}

.footer-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #134a88;
    /* example hover color (bootstrap primary) */
}

/* Copyright text */
.footer-nav p {
    margin: 0;
    font-size: 14px;
}

/* Social media icons in a row */
.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
    /* spacing between icons */
}

/* Style the icons (optional) */
.social-media a {
    color: #333;
    text-decoration: none;
    font-size: 1.25rem;
    /* adjust icon size */
    transition: color 0.3s;
}

.social-media a:hover {
    color: #134a88;
    /* or any hover color you prefer */
}
.accordion-button:not(.collapsed) {
    color: #134a88 !important;
    background-color: #e7f1ff !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* Example CSS (inline for demo, move to a CSS file in production) */

/* Header styling */
.agreement-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fffaf0;
    /* a light off-white/#b09742 tint */
    /* border-bottom: 4px solid #B09742; */
    padding: 1rem;
    margin-bottom: 1rem;
}

.agreement-header img {
    height: 60px;
    /* adjust as needed */
    margin-right: 1rem;
}

.agreement-header h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: bold;
    color: #333;
}

/* Container with #b09742 border */
.agreement-container {
    /* border: 2px solid #b09742; */
    border-radius: 6px;
    padding: 1rem;
    background-color: #fff;
    /* white background inside */
}

/* Two-column layout styles */
/* .agreement-column {
                                                                                                                                                                    min-height: 600px;
                                                                                                                                                                    max-height: 80vh;
                                                                                                                                                                    overflow-y: auto;
                                                                                                                                                                } */
.parent-container {
    text-align: center;
}

/* Signature canvas container */
.signature-container {
    display: inline-block;
    border: 1px solid #ccc;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin-bottom: 1rem;
}

/* Example styling for the error message */
.error-message {
    color: red;
    margin-bottom: 1em;
    display: none;
    /* hidden by default */
}

canvas#signature-canvas {
    cursor: crosshair;
}

/* Disabled button style (optional) */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.blue {
    color: #134a88;
}

.section-title {
    font-size: 1.2em;
    margin-top: 1.5em;
}

ol.alpha {
    list-style-type: upper-alpha;
}

.nested-list {
    margin-left: 2em;
}

/* Basic header styling */
.app-header {
    background-color: #134a88;

    padding: 20px 0;
}

/* Container to keep content centered if desired */
.app-header-content {
    display: flex;
    align-items: center; /* vertically center */
    justify-content: space-between; /* space out left and right sections */
    max-width: 1200px; /* or your preferred max width */
    margin: 0 auto;
    padding: 0 15px; /* standard container padding */
}

/* Left side: Logo + Title */
.app-header-left {
    display: flex;
    align-items: center;
    gap: 15px; /* spacing between logo and title */
}

/* Logo styling */
.app-logo {
    height: 60px; /* adjust as needed */
    width: auto;
}

/* Title styling */
.app-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* Right side: just a form with a button in this example */
.app-header-right {
    display: flex;
    align-items: center;
}
.btn-gold,
.btn-gold:hover {
    color: #fff;
    background-color: #b09742 !important;
    border-color: #b09742 !important;
}

.loader {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}

.loader div {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #134a88;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.employee-card {
    width: 100%;
    max-width: 500px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-family: 'Arial, sans-serif';
    color: #333;
    margin: 20px auto;
}

.employee-header h3 {
    margin: 0;
    color: #134a88;
    font-size: 1.5rem;
    font-weight: bold;
}

.employee-header .job-title {
    margin-top: 5px;
    font-size: 1rem;
    color: #666;
}

.employee-info {
    margin-top: 15px;
}

.employee-info p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin: 10px 0;
}

.employee-info i {
    font-size: 1.2rem;
    color: #134a88;
    margin-right: 10px;
}

strong {
    color: #134a88;
}