.container {
    width: 80%;
    max-width: 1200px;
    margin: 50px auto;
}

.vacature-card {
    background-color: #090D17;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
}

.vacature-card h3 {
    font-size: 24px;
    color: #6ab04c;
}

.vacature-card p {
    font-size: 18px;
    color: #ccc;
    flex-grow: 1;
}

.apply-btn {
    background-color: #2E83DB;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    text-align: center;
}

.apply-btn:hover {
    background-color: #29539B;
}

.warning {
    background-color: #f0ad4e;
    color: white;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

.vacature-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}