html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'nunito-sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}


.search-input {
    min-width: 300px;
    padding: 6px 6px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-items: left;
    gap: 0.5rem;
}

    .search-btn:hover {
        background: #2563eb;
    }

table {

}

.table-rounded {
    border-radius: 1rem;
    overflow: hidden;
}

thead tr {
    background-color: #006DCC;
    color: white;
}




.job-info {
    margin-bottom: 2rem;
}

    .job-info p {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

.label {
    font-weight: bold;
    color: #333;
}

.section {
    margin-bottom: 1.5rem;
}

    .section h2 {
        color: #005ea2;
        border-top: 1px solid #ccc;
        padding-top: 1rem;
        margin-bottom: 1rem;
    }