/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.sidebar {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.sidebar h2 {
    font-size: 1.25rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.sidebar p, .sidebar ul {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.sidebar ul {
    padding-left: 20px;
}

.sidebar ul li {
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.file-input, .format-select {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input[type="file"] {
    padding: 0.75rem;
    border: 2px dashed #007bff;
    border-radius: 8px;
    background-color: #f1f8ff;
    color: #007bff;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

input[type="file"]:hover {
    background-color: #e2f0ff;
}

select {
    padding: 0.75rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: #ffffff;
    color: #007bff;
    font-size: 1rem;
    cursor: pointer;
}

button {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Image Preview */
.image-preview {
    display: none;
    margin: 1rem 0;
    text-align: center;
}

#leftPreviewImage, #rightPreviewImage {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    width: 150px; /* Fixed width */
    height: 150px; /* Fixed height */
    object-fit: cover; /* Ensure the image fits within the dimensions */
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    display: none;
    position: relative;
}

.progress {
    width: 0;
    height: 10px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

#progressText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #333;
}

/* Error Message */
.error {
    color: red;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}


    background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 700px;
        }
        .testimonial {
            background-color: #f0f8ff;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
        }
        .testimonial p {
            margin: 0 0 5px;
            color: #333;
        }
        .testimonial span {
            color: #007bff;
            font-weight: bold;
        }
        h2 {
            color: #007bff;
            text-align: center;
            margin-bottom: 20px;
        }