/* ===== Main Card Container ===== */
.ldi-import-form {
    max-width: 700px;
    background: #ffffff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* ===== Heading ===== */
.ldi-import-form h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== Sample Download Box ===== */
.ldi-import-form .ex-im-updated {
    background: #f0f6ff;
    border-left: 4px solid #2271b1;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.ldi-import-form .ex-im-updated p {
    margin: 0;
    font-size: 14px;
}

.ldi-import-form .ex-im-updated a {
    color: #2271b1;
    font-weight: 500;
    text-decoration: none;
}

.ldi-import-form .ex-im-updated a:hover {
    text-decoration: underline;
}

/* ===== File Input Styling ===== */
.ldi-import-form input[type="file"] {
    display: block;
    width: 100%;
    padding: 12px;
    border: 2px dashed #ccd0d4;
    border-radius: 8px;
    background: #f9fafb;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ldi-import-form input[type="file"]:hover {
    border-color: #2271b1;
    background: #f0f6ff;
}

/* ===== Import Button ===== */
.ldi-import-form input[type="submit"] {
    background: #2271b1;
    border: none;
    padding: 5px 22px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ldi-import-form input[type="submit"]:hover {
    background: #135e96;
}

/* ===== Progress Wrapper ===== */
#ldi-progress-wrapper {
    margin-top: 25px;
}

/* Outer Progress Bar */
#ldi-progress-wrapper-id {
    width: 100%;
    background: #b3cbdf;
    border-radius: 5px;
    overflow: hidden;
    height: 30px;
    position: relative;
}
/* Inner Progress Bar */
#ldi-progress-bar {
    width: 0%;
    background: #2271b1;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    text-indent: 8px;   /* 👈 space before 0% */
    transition: width 0.4s ease;
}
/* Progress Message */
#ldi-progress-message {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .ldi-import-form {
        padding: 20px;
    }

    .ldi-import-form h2 {
        font-size: 20px;
    }

    .ldi-import-form input[type="submit"] {
        width: 100%;
    }
}