.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;

}

.skill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill.preferred {
    border-color: #888;
    color: #444;
}

.skill:hover {
    background-color: #f4f4f4;
}

@media (max-width: 480px) {
    .skills-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .skill {
        width: auto;
    }
}



.JobHeading {
    margin-top: 150px;
    margin-bottom: 50px;
}

.back-button {
    background: #e0e0e0;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 5px;
    font-size: 14px;
}

.job-title {
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
    color: black;
    font-family: inherit;
    word-break: break-word;
    line-height: 1.2;
    text-transform: none !important;
}

.job-type {
    color: #007bff;
    font-weight: bold;
    margin-top: 5px;
}

.company-welcome {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.description {
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    color: black;
}

.list {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

.list li {
    margin-bottom: 8px;
    color: gray;
}

.Join-button {
    background: rgb(74, 135, 226);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    color: white;
}

.back-button:hover {
    background: #e74c3c;
    color: white;
}