@import url(https://fonts.googleapis.com/css?family=Montserrat);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: Montserrat, arial, verdana;
    background: #f8f9fa;
}

.navbar {
    background-color: #007bff;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.list-group-item.active,
.job-card.active {
    background-color: #007bff;
    color: black;
}
.job-card {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
/*    .job-card:hover {
        background-color: #f0f8ff;
    }*/
.job-card img {
    transition: transform 0.3s ease;
}
.job-card:hover img {
    transform: scale(1.1);
}
.experience-span {
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 3px 10px;
    border-radius: 20px;
    background-color: #e9ecef;
    white-space: nowrap;
}
#jobDetails {
    border-left: 3px solid #007bff;
    background-color: #f8f9fa;
}
#jobLink .btn {
    margin-top: 10px;
}
.posted-time {
    color: #fd7e14; /* Bootstrap orange */
    font-weight: 600;
    background: rgba(253, 126, 20, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}
.scrapped-time {
    color: #6eb717;
    font-weight: 600;
    background: rgba(159, 194, 63, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}

/* MultiStep Form */
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}
#msform fieldset {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    padding: 20px 30px;
    width: 80%;
    margin: 0 10%;
    position: relative;
}
#msform fieldset:not(:first-of-type) {
    display: none;
}
/*#msform input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 13px;
    color: #2C3E50;
}
#msform input:focus {
    border-color: #007bff;
    outline: none;
    transition: .5s;
}*/

.action-button, .action-button-previous {
    width: 100px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}
.action-button {
    background: #007bff;
}
.action-button:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #007bff;
}
.action-button-previous {
    background: #aCbEd0;
}
.action-button-previous:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #aCbEd0;
}

.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
}
#progressbar li {
    list-style: none;
    color: #666;
    text-transform: uppercase;
    font-size: 9px;
    width: 20%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 10px;
}
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
}
#progressbar li:first-child:after {
    content: none;
}
#progressbar li.active:before, #progressbar li.active:after {
    background: #007bff;
    color: #fff;
}

.is-invalid {
    color: red;
    font-size: 12px;
}

/* Loader, centered */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 9999;
    display: none; /* toggled via JS */
    display: flex;            /* center spinner */
    align-items: center;      /* vertical */
    justify-content: center;  /* horizontal */
}
