.no-vacancies {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 15px;
    gap: 15.75px;
    padding: 30px;
}
.no-vacancies p {
    color: #304ffe;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.no-vacancies img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}
.no-vacancies h1 {
    color: #ffffff;
    font-size: 2.15rem;
    margin: 0;
    text-align: left;
    text-transform: none;
    font-weight: 300;
}
@media (max-width: 745px) {
    .no-vacancies {
        flex-direction: column;
    }
    .no-vacancies img {
        width: 21vw;
        height: 21vw;
    }
    .no-vacancies h1 {
        font-size: 2.1rem;
        margin-top: 15px;
        padding-right: 9%;
        padding-left: 9%;
    }
    .no-vacancies p {
        font-size: 3rem;
        font-weight: 300;
        padding-right: 9%;
        padding-left: 9%;
    }
    }
     #app-container {
            margin: 0 auto;
            padding: 9%;
            box-sizing: border-box;
        }
        .job-list-container {
            display: grid;
             grid-template-columns: repeat(3, 1fr);
            gap: 21px;
        }
        @media (max-width: 975px) {
        .job-list-container {
            grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575px) {
        .job-list-container {
            grid-template-columns: 1fr;
            }
        }
        .job-card {
            padding: 21px;
            border-radius: 20.55px;
            border: 1px solid #303030;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: box-shadow 0.3s ease; 
        }
        .job-card-content {
            margin-bottom: 15px;
        }
        .job-card h2 {
            font-size: 1.21rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: #ffffff;
            text-align: left;
            text-transform: none;
            border-left: 3px solid #304ffe;
            padding-left: 15px;
        }
        .job-meta {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #303030;
            display: flex;
            flex-wrap: wrap; 
            gap: 12px;
        }
        .job-meta span {
            font-size: 0.9rem;
            font-weight: 400;
            padding: 5px 9px;
            border-radius: 45px;
            color: #ffffff;
            text-transform: none;
            background-color: #212121; 
        }
        .job-meta .date-posted {
             background-color: #304ffe; 
             color: #ffffff;
             font-weight: 400;
        }
        .job-card p {
            font-size: 0.9rem; 
            line-height: 1.55;
            color: #eeeeee;
            margin-bottom: 20px;
            font-weight: 300;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;
        }
        .apply-button {
            display: block;
            padding: 13.45px;
            background-color: #304ffe; 
            color: #ffffff;
            border-radius: 5.75px;
            font-weight: 400;
            text-align: center;
            letter-spacing: 0.15px;
            border: none;
            font-size: 1em;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .apply-button:hover:not(.unavailable-button) {
            background-color: #151515;
            color: #ffffff;
        }
        .unavailable-button {
            background-color: #151515;
            color: #dddddd;
            cursor: default;
        }
        .unavailable-button:hover {
            background-color: #151515; 
            color: #dddddd; 
        }
        #status-message {
            grid-column: 1 / -1; 
            text-align: center;
            font-size: 1.45rem;
            color: #757575;
            padding: 75px;
            font-weight: 300;
        }