.openings_margin_div {
    margin-left : 20px ;
    margin-top: 20px;
    margin-bottom: 20px;
}

.openings_clean_para {
    margin: 10px; 
    font-size: 18px;
}
.padding-top40{
    padding-top: 40px ;
}
.padding-bot40{
    padding-bottom: 40px ;
}
/* Collapsible Button with Gradient Bottom Bar */
.opening-collapsible {
    color: #E65100; /* Deep Orange */
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    transition: border-bottom 0.3s ease-in-out, color 0.3s ease-in-out;
    background: #f7f6f3; /* No background */
    border-bottom: 4px solid transparent;
    position: relative;
    margin-bottom: 15px;
}

/* Gradient Bottom Border */
.opening-collapsible::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FFA726, #FB8C00); /* Gradient from light to dark orange */
    transition: height 0.3s ease-in-out;
}

/* Hover & Active State */
.opening-collapsible:hover,
.opening-collapsible.active {
    color: #FB8C00; /* Slightly darker orange on hover */
    background: #f1efe6; /* No background */
}

.opening-collapsible:hover::after,
.opening-collapsible.active::after {
    height: 6px; /* Increases gradient bottom-bar thickness */
}


/* Collapsible Content */
.job-content {
    padding: 15px;
    display: none;
    overflow: hidden;
    background-color: white;
    border: 1px solid #FFA726;
    border-radius: 5px;
    margin-top: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Unordered List Links */
.jobLists {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.jobLists li {
    padding: 5px 0;
}

.jobLists li a {
    text-decoration: none;
    color: #E65100; /* Deep orange */
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.jobLists li a:hover {
    color: #FB8C00; /* Lighter orange */
}