
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7f9fc;
    overflow-x: hidden;
}

.standard-container {
    max-width: 1050px;
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (max-width: 1050px) {
    .standard-container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 640px) {
    .standard-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.standard-container>* {
    width: 100%;
}

.standard-container table {
    width: 100% !important;
    max-width: 1050px;
    table-layout: fixed;
}

.standard-container .bg-white {
    width: 100%;
    padding: 1rem;
}

.job-card {
    transition: all 0.3s ease;
    width: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}


.min-w-full {
    width: 100% !important;
}

.shadow-md {
    width: 100%;
}


.overflow-hidden {
    overflow-x: visible !important;
    width: 100%;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
}

.section-title {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}


.heading-title {
    background: #16a34a;
    
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.required {
    color: #dc2626;
}

.uppercase-input {
    text-transform: uppercase;
}

.add-row-btn {
    background-color: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.add-row-btn:hover {
    background-color: #059669;
}

.remove-row-btn {
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-row-btn:hover {
    background-color: #dc2626;
}

.text-stroke-darkblue {
    -webkit-text-stroke: 1px #1e3a8a;
    
    -webkit-text-stroke: 1px #1e3a8a;
    
    color: white;
    
}


.header-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #4b5563;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #111827;
}

.nav-link {
    white-space: nowrap;
}



@media (max-width: 640px) {
    .header-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .nav-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-container {
        justify-self: center;
    }
}