.elementor-9667 .elementor-element.elementor-element-767632e{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-9667 .elementor-element.elementor-element-5b4fe82{--display:flex;}.elementor-9667 .elementor-element.elementor-element-e55a288{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-9667 .elementor-element.elementor-element-5f9726c{width:var( --container-widget-width, 7% );max-width:7%;--container-widget-width:7%;--container-widget-flex-grow:0;text-align:left;}.elementor-9667 .elementor-element.elementor-element-5f9726c img{width:100%;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-9667 .elementor-element.elementor-element-5eec1ef > .elementor-widget-container{margin:0px 0px 0px 13px;}.elementor-9667 .elementor-element.elementor-element-5eec1ef .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:30px;font-weight:600;line-height:40px;letter-spacing:-0.9px;color:#007BA7;}@media(max-width:767px){.elementor-9667 .elementor-element.elementor-element-767632e{--padding-top:30px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}.elementor-9667 .elementor-element.elementor-element-5b4fe82{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9667 .elementor-element.elementor-element-5f9726c{--container-widget-width:11%;--container-widget-flex-grow:0;width:var( --container-widget-width, 11% );max-width:11%;}.elementor-9667 .elementor-element.elementor-element-5eec1ef > .elementor-widget-container{margin:0px 0px 0px 12px;}.elementor-9667 .elementor-element.elementor-element-5eec1ef .elementor-heading-title{font-size:20px;line-height:1.2em;}.elementor-9667 .elementor-element.elementor-element-e908402{width:100%;max-width:100%;}}@media(min-width:768px){.elementor-9667 .elementor-element.elementor-element-767632e{--content-width:1200px;}.elementor-9667 .elementor-element.elementor-element-5b4fe82{--width:50%;}}/* Start custom CSS for shortcode, class: .elementor-element-e908402 *//* Styling for the upload container */
#prescription-dropzone {
    border: 2px dashed #cccccc;
    padding: 50px;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    background-color: #fdfdfd;
    font-family: 'Arial', sans-serif;
}

#prescription-dropzone.drag-over {
    background-color: #f0f8ff;
    border-color: #1e88e5;
}

/* Upload icon */
#prescription-dropzone i {
    font-size: 36px;
    color: #1e88e5;
    margin-bottom: 10px;
}

/* Text inside dropzone */
#prescription-dropzone p {
    color: #666666;
    font-size: 16px;
    margin: 5px 0;
}

#prescription-dropzone p span {
    color: #1e88e5;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

#prescription-dropzone p strong {
    color: #333333;
}

/* File preview section */
#file-preview {
    margin-top: 20px;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    font-size: 14px;
    color: #444444;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Remove button */
#remove-file {
    background-color: #ff5a5a;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

#remove-file:hover {
    background-color: #e04545;
}

/* Continue button */
#continue-btn {
    background-color: #1e88e5;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

#continue-btn:hover {
    background-color: #156cb3;
}

/* Responsive Design */
@media (max-width: 768px) {
    #prescription-dropzone {
        padding: 30px;
    }

    #file-preview {
        width: 100%;
    }

    #remove-file, #continue-btn {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */