#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 1000;
}

.spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

/* Add other custom styles here */

/* .home-container {
    text-align: center;
    padding: 2rem;
}

.welcome-message {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.main-btn {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.main-btn:hover {
    transform: scale(1.05);
}

.btn-file-matcher {
    background-color: #3498db;
    color: white;
}

.btn-translate {
    background-color: #2ecc71;
    color: white;
} */