 /* Additional styles for the new elements */
 .file-import {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.file-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.file-input-label {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}
.file-name {
    margin-left: 10px;
    color: #666;
    font-style: italic;
}
#fileInput {
    display: none;
}
.btn-import {
    background-color: #2196F3;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.separator {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}
.input-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.input-group {
    display: flex;
    flex-direction: column;
}
.input-group label {
    margin-bottom: 5px;
    font-weight: bold;
}
.input-group input, .input-group select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.submit-btn {
    background-color: #673AB7;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.progress-container {
    margin-top: 20px;
    display: none;
}
.progress-bar {
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 4px;
    margin-bottom: 10px;
}
.progress {
    height: 20px;
    border-radius: 4px;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.3s;
}
.progress-text {
    text-align: center;
    font-size: 14px;
}
.success-message {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}
.error-message {
    color: #f44336;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}

/* Autocomplete dropdown styling */
datalist {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    width: auto;
    z-index: 1000;
}

datalist option {
    padding: 8px 12px;
    cursor: pointer;
}

datalist option:hover {
    background-color: #f5f5f5;
}