.logo-emg {
    height: 60px;
    width: auto;
}

.logo-ats {
    height: 30px;
    width: auto;
}

.footer-text {
    color: #6B7280;
    font-size: 0.875rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: loading 1.5s infinite linear;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

img.h-16 {
    height: 4rem;
    width: auto;
    object-fit: contain;
}
