.faq-answer {
    display: none;
    padding: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.faq-question {
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 16px;
    padding: 10px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ddd;
}

.faq-question.active + .faq-answer {
    display: block;
    max-height: 200px;
    opacity: 1;
}

.navbar-no-expand .nav-link {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.star-rating {
    display: flex;
    font-size: 1.5em;
    direction: rtl;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #ddd;
    cursor: pointer;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: gold;
}

th {
    cursor: pointer;
}

.header-shadow {   
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-validation-error {
    border-color: #dc3545;
}

.error-message {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.input-validation-error + .input-group-append > .input-group-text {
    border-color: #dc3545;
}

.spanner {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(42, 42, 42, 0.33);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    z-index: 1000;
    visibility: hidden;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: #ffffff;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.show {
    visibility: visible;
}

.spanner, .overlay {
    opacity: 0;
    transition: all 0.3s;
}

.spanner.show, .overlay.show {
    opacity: 1;
}

.new-job-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    padding: 5px;
}

.main-footer {
    padding: 5px;
}
