.assessment-approved-badge {
    min-width: 85px;
    text-align: center;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border: 1px solid #28a745;
    border-radius: 12px;
    color: #155724;
    background-color: #d4edda;
    font-size: 0.875rem;
    line-height: 1;
}

.assessment-rejected-badge {
    min-width: 85px;
    text-align: center;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border: 1px solid #dc3545;
    border-radius: 12px;
    color: #721c24;
    background-color: #f8d7da;
    font-size: 0.875rem;
    line-height: 1;
}

.assessment-pending-badge {
    min-width: 85px;
    text-align: center;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ffc107;
    border-radius: 12px;
    color: #856404;
    background-color: #fff3cd;
    font-size: 0.875rem;
    line-height: 1;
}

.job-function-badge{
    padding: 2px 5px;
    background: #c4efff;
    border-radius: 5px;
}

.validation-form-error-feedback {
    width: 100%;
    margin-top: .125rem;
    font-size: .75rem;
    color: var(--bs-form-invalid-color);
}

.image-wrapper {
    position: relative;
    width: 300px;
    height: 200px;
}

.image-skeleton {
    width: 100%;
    height: 100%;
    background-color: #e2e5e9;
    animation: pulse 1.3s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.4; }
    100% { opacity: 1; }
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    z-index: 9999;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
