<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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;
}


.job-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job-card {
    width: 300px;
    padding: 30px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
    font-size: 24px;
}

.job-card p {
    margin-top: 20px;
    font-size: 16px;
}

.job-card a {
    display: block;
    margin-top: 30px;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.job-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 10px;
}

input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

button {
    padding: 10px 10px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ffd800;
    color:black;
}

.fancy-button {
    background-color: #4682b4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fancy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fancy-button:active {
    transform: scale(0.95);
}

.navbar {
    border-bottom: 1px solid #007bff;
    box-shadow: 0 4px 6px rgba(0,123,255,0.1);
}

.nav-link {
    border-top: 1px solid transparent;
}

.nav-link:hover {
    border-color: #007bff;
    transition: border-color 0.2s ease-in-out;
}



body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.hero {
    height: 80vh;
    background: linear-gradient(to right, #0099ff, #66ccff);
    color: white;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.custom-jumbotron {
    background-color: #f7f9fc; 
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center;
}

    .custom-jumbotron h1 {
        font-size: 2.5rem; 
        color: #333; 
        margin-bottom: 1rem;
    }

    .custom-jumbotron p {
        font-size: 1.25rem;
        color: #555; 
        margin-bottom: 1rem;
    }

.cta-button {
    display: inline-block;
    background-color: #4682b4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .cta-button:hover {
        background-color: #0056b3; 
        transform: translateY(-5px); 
    }

.filters {
    display: flex;
    flex-wrap: wrap; 
    gap: 7px; 
    justify-content: center; 
}

    .filters button {
        padding: 10px 10px; 
        font-size: 14px; 
        border: none;
        background-color: #007bff; 
        color: white;
        border-radius: 5px;
        transition: background-color 0.3s; 
        white-space: nowrap; 
    }

        .filters button:hover {
            background-color: #0056b3; 
        }

/* For screens smaller than 600px, you can adjust styles even further */
@media (max-width: 600px) {
    .filters button {
        padding: 8px 16px; 
        font-size: 14px; 
    }
}
/* General styles for both mobile and desktop */

.job-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center;
}

.job-card {
    background-color: #f7f9fc; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: calc(33.33% - 20px); 
    text-align: center;
}

    .job-card h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333; 
    }

    .job-card p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #555; 
    }


/* Media query for mobile screens, adjusting for devices up to 768px in width */

@media (max-width: 768px) {
    .job-card {
        width: 100%; 
        margin-bottom: 20px;
    }

        .job-card h2 {
            font-size: 1.2rem;
        }

        .job-card p {
            font-size: 1rem;
        }

    .fancy-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
.custom-hover {
    color: initial;
}

    .custom-hover:hover {
        color: black;
    }</pre></body></html>