/* Algemene stijlen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container voor vacatures */
.sf-vacatures {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sf-vacatures ul {
    list-style: none;
    padding: 0;
}

.sf-vacatures.grid ul {
    display: flex;
    flex-wrap: wrap;
}

.sf-vacatures.grid li {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
}

.sf-vacatures.list li {
    margin: 10px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.sf-vacatures li:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sf-vacatures h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.sf-vacatures p {
    margin: 10px 0;
    font-size: 1em;
    color: #666;
}

.sf-vacatures .employment-terms {
    font-weight: bold;
    color: #000;
}

/* Detail pagina stijlen */
.sf-vacature-detail {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sf-vacature-detail h1 {
    margin-top: 0;
    font-size: 2em;
    color: #333;
}

.sf-vacature-detail p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #666;
}

.sf-vacature-detail a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sf-vacature-detail a:hover {
    background-color: #0056b3;
}
