.upload_fileSection {
    border: 1.6px dashed #1293c7;
    padding: 15px;
    background-color: #87ceeb45;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-file-btn {
    display: flex;
    align-items: center;
    border: 1.5px dashed #474848;
    color: #474848;
    padding: 22px 45px;
    border-radius: 5px;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease;
}

.upload-file-btn:hover {
    background: #474848;
    color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.upload-file-btn img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.preview_sidebar_style {
    background: #fff;
    position: absolute;
    box-shadow: 0px 0px 15px 0px #00000033;
    right: 0;
    top: 60px;
    height: 85vh;
    width: 1000px;
    overflow-y: auto;
    border-radius: 10px 0 0 10px;
    z-index: 3;
}
.close_preview_section {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
}
.setting_preview {
    position: fixed;
    margin-top: 20px;
    right: 10px;
    cursor: pointer;
    z-index: 2;
}
.setting_style {
    background-color: #fff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSetting 8s linear infinite;
}

@keyframes rotateSetting {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#pdf-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pdf-wrapper {
    width: 150px;
    height: 200px;
    position: relative;
    background: #f4f4f4;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.merge-pdf-item-blank {
    width: 150px;
    height: 200px;
    position: relative;
    background: #f4f4f4;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.pdf-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-container canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.pdf-wrapper p {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 2px;
}

.merge-pdf-blank-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 6px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.convert-file_btn {
    display: flex;
    align-items: center;
    background-color: #1293c7;
    color: white;
    padding: 12px 40px 12px 8px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
.convert-file_btn:hover {
    background-color: #1294c7af !important;
}

.more_option_icons {
    width: 34px;
    height: 34px;
    background-color: #2e2e2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.more_option_icons:hover {
    background: #474848;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.dropdown_style {
    border: 1.5px dashed #1293c7;
    border-radius: 5px;
}

#confirmBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bg_color {
    background-color: #e3edff;
}

.converter_tabs_layout {
    border-bottom: 1.5px solid #474848;
    padding: 5px 0 0;
    text-align: center;
    gap: 13px;
    display: flex;
    justify-content: center;
    padding: 0 0 5px;
}

.converter_tabs_layout_tab_style h3 {
    color: #474848;
    padding: 10px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
}

.converter_tabs_layout_tab_style:hover {
    background-color: #f5f5f5;
    border-radius: 5px;
}

.converter_tab_content_1 {
    margin-top: 20px;
}

.converter_tabs_layout_tab_style.active {
    border-radius: 5px;
    background-color: #e0e0e0;
}

#toast-container > .toast-error {
    background-color: #dc2626 !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 8px;
}

#toast-container > .toast-error div,
#toast-container > .toast-error .toast-message,
#toast-container > .toast-error .toast-title {
    color: #fff !important;
}

#toast-container > .toast-error .toast-icon {
    color: #fff !important;
}

#toast-container > .toast-success {
    background-color: #16a34a !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 8px;
}

#toast-container > .toast-success div,
#toast-container > .toast-success .toast-message,
#toast-container > .toast-success .toast-title {
    color: #fff !important;
}

#toast-container > .toast-success .toast-icon {
    color: #fff !important;
}

.coming_soon {
    border: 1.4px solid #87CEEB;
    padding: 0px 8px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 10px;
}

@media screen and (max-width: 800px) {
    .preview_sidebar_style {
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    #pdf-list-container {
        margin-bottom: 20px;
    }
    .merge-menu-button {
        font-size: 11px;
    }
}
