.rtl,.rtl * {
    direction: rtl !important;
    text-align: right;
}


.job-details-container {
    /*background: #fff;*/
    border-radius: 16px;
    margin-top: 100px;
    /*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;*/
    padding: 20px;
}
.job-details,.school-details{
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    padding: 10px;
    border-radius: 16px;

}

.job-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc; /* Add a bottom border */
    padding-bottom: 10px; /* Add some padding at the bottom */
}

.job-title {
    font-size: 32px;
    font-weight: 600;
    color: #333; /* Dark grey */
    text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.job-salary {

    color: #e8ba00;
}


/* Hover effect for salary */
.job-salary:hover {
    color: #c0392b; /* Red */
    transition: color 0.3s ease; /* Smooth transition */
}

.locked-content {
    margin-top: 20px;
    padding: 20px;
    background: #aaa;
    position: relative;
    border-radius: 16px;
}

.preload {
    height: 20px;
    background: #ddd;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 16px;
}

.preload-mid {
    width: 50%;
}

.preload-small {
    width: 25%;
}

.lock-content-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    text-align: center;

}

.lock-content-prompt svg {
    width: 50px;
}
.school-image{
    display: flex;
    justify-content: center;
}
.school-image img{
    width: 225px;
    border-radius: 10px;
}
.school-name{
    text-align: center;
    font-size: 24px;
    padding: 12px;
    font-weight: 600;
    color: #e8ba00;
    text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 700px) {
    .lock-content-prompt {
        position: absolute;
        top: 50%;
        left: 4%;
        transform: translate(-2%, -50%);
        padding: 20px;
        border-radius: 5px;
        text-align: center;
    }
    .job-details-header{
        flex-direction: column;
    }

}