.csv-to-jpeg-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.csv-to-jpeg-container .form-group {
    margin-bottom: 15px;
}

.csv-to-jpeg-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.csv-to-jpeg-container .description {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* upload csv */

/* Base Styles */
        .upload-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
            padding: 20px;
            border-radius: 8px;
            background-color: #f8faff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2a5885;
            font-size: 16px;
        }

        /* File Input Styling */
        .form-group input[type="file"] {
            display: none;
        }

        .file-input-wrapper {
            position: relative;
            margin-bottom: 10px;
        }

        .file-input-label {
            display: block;
            padding: 15px;
            text-align: center;
            border: 2px dashed #4a90e2;
            border-radius: 6px;
            background-color: #fff;
            color: #2a5885;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-input-label:hover {
            background-color: #e6f0ff;
            border-color: #3a7bc8;
        }

        .file-input-label span {
            display: block;
            font-size: 16px;
        }

        .file-input-label::before {
            content: "📁";
            font-size: 24px;
            margin-bottom: 8px;
            display: block;
        }

        /* Description Text */
        .description {
            font-size: 13px;
            color: #7a9bc1;
            margin-top: 8px;
            line-height: 1.4;
        }

        /* Button Styling */
        .button {
            display: inline-block;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .button-primary {
            background-color: #4a90e2;
            color: white;
        }

        .button-primary:hover {
            background-color: #3a7bc8;
        }

        /* Selected File Name */
        .file-name {
            display: block;
            margin-top: 10px;
            font-size: 14px;
            color: #2a5885;
            font-style: italic;
        }
      

/* upload csv ends */

.results-section {
    margin-top: 30px;
    overflow-x: auto;
}


.error-message {
    color: #f00;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px;
    background: #ffeeee;
    border: 1px solid #ffcccc;
    border-radius: 4px;
}

.loading-spinner {
    text-align: center;
    margin: 20px 0;
    position: fixed;
    bottom: 0;
    width: 50%;
    background: rgb(255 255 255 / 82%);
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

table.wp-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table.wp-list-table th, table.wp-list-table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
}

table.wp-list-table th {
    background-color: #f5f5f5;
    text-align: left;
}

.button {
    padding: 8px 16px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.button:hover {
    background: #135e96;
}