.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
}

.card-header {
    display: flex;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 15px;
}

.card:hover {
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.job-title {
    flex-grow: 1;
}

.job-logo {
    width: 40px;
    height: 40px;
    margin-top: 24px;
    border-radius: 50%;
}

.job-header-detail {
    align-items: center;
    display: flex !important;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.job-location {
    border-radius: 15px;
}

.chevron {
    transition: transform 0.3s ease;
    font-size: 35px;
    margin-left: auto;
    height: 55px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.chevron.rotated {
    transform: rotate(180deg);
}

.card-body {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.card-body.expanded {
    padding: 15px;
    border-top: 1px solid #ddd;
    max-height: 500px;
}