

/* Fallback Google Font option */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
 overflow: hidden;
 touch-action: pan-y; /** Disable horizontal scrolling */
 width: 100ddvw; /* Ensure full viewport width */
 height: 100dvh; /* Ensure full viewport height */
 max-width: 100%; /* Prevent overflow */
 min-height: 100%
}
/* Base styles and responsive breakpoints */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Global scrollbar styling */
* {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #907bd5 rgba(0, 0, 0, 0.2); /* Firefox */
}

*::-webkit-scrollbar {
    width: 8px; /* Wider scrollbar for easier touch interaction */
    height: 8px; /* For horizontal scrollbars */
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); /* Subtle track */
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
    background-color: #907bd5; /* Purple scrollbar thumb */
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #907bd5; /* Lighter purple on hover */
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw; /* Ensure body covers the entire viewport width */
    background: linear-gradient(to bottom, #000000, #0a0a2a);
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', monospace;
    max-width: 100%; /* Prevent overflow */
}

.dropvader-header {
    position: relative;
    width: 100%;
    text-align: center;
}

.dropvader-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport width to ensure full coverage */
    height: 100vh; /* Use viewport height to ensure full coverage */
    animation: dropvader-moveStarsBackAndForth 240s ease-in-out infinite;
    z-index: 0; /* Lowered z-index to prevent interference with scrolling */
    pointer-events: none; /* Ensure stars don't capture mouse/touch events */
    overflow: hidden; /* Prevent scrollbars */
    transition: opacity 1s ease-in-out; /* Add smooth transition for opacity changes */
}

.dropvader-lightspeed-active {
    animation: dropvader-lightspeed 1s linear forwards !important;
}

.dropvader-stars-reversed {
    animation: dropvader-moveStarsReversed 240s ease-in-out infinite !important;
}

.dropvader-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: dropvader-twinkle 3s infinite alternate;
    pointer-events: none; /* Ensure stars don't capture mouse/touch events */
}

.dropvader-star-streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
    transform-origin: left center;
    animation: dropvader-streak 1.5s linear infinite;
    pointer-events: none;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.dropvader-hyperspace-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport width to ensure full coverage */
    height: 100vh; /* Use viewport height to ensure full coverage */
    perspective: 500px;
    z-index: 0;
    pointer-events: none;
    display: none;
    overflow: hidden;
}

.dropvader-tunnel-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    border-radius: 50%;
    animation: dropvader-tunnel 3s linear infinite;
    pointer-events: none;
}

.dropvader-title {
    position: relative;
    width: 100%;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    font-weight: bold;
    Xcolor: #3C25AD; /* Make the text transparent */
    Xbackground-color: transparent;
    -webkit-text-stroke: 1px #907bd5; /* Purple outline for webkit browsers */
    text-stroke: 1px #907bd5; /* Purple outline */
    letter-spacing: 4px;
    z-index: 12;
    text-transform: uppercase;
    /* Enhanced drop shadow effect */
    Xfilter: drop-shadow(0 0 8px rgba(95, 65, 195, 0.7)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.dropvader-tagline {
    position: relative;
    width: 100%;
    text-align: center;
    font-family: 'Courier New', monospace; /* Already monospace font */
    font-size: 19px; /* Exactly 19px as requested */
    color: #907bd5; /* Match the title color */
    letter-spacing: 1px;
    font-weight: bold;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    background-color: rgba(0, 0, 0, 0.3); /* Slight background to help with visibility */
    padding: 5px 0;
    margin-left: auto;
    margin-right: auto;
}

/* May 4th image styling */
.drop-vader-may-4th {
    height: 70px; /* Set height to 70px as requested */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it's treated as a block element for centering */
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer; /* Show pointer cursor on hover */
    margin: 0 auto 20px; /* Center horizontally and add bottom margin */
}

.drop-vader-may-4th:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

/* May promotion text styling */
.dropvader-may-promo {
    color: #FED404; /* Yellow color as requested */
    font-family: 'Courier New', monospace;
    font-size: 18px; /* Changed from 24px to 18px */
    font-weight: normal;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
    width: auto;
    margin: 0 auto;
    display: inline-block;
}

@keyframes dropvader-twinkle {
    from {
        opacity: 0.2;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(2);
    }
}

@keyframes dropvader-moveStarsBackAndForth {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes dropvader-moveStarsReversed {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes dropvader-lightspeed {
    from {
        transform: translateX(0) scaleX(1);
        opacity: 1;
    }
    25% {
        transform: translateX(-25%) scaleX(3);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scaleX(5);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-75%) scaleX(8);
        opacity: 0.4;
    }
    to {
        transform: translateX(-100%) scaleX(10);
        opacity: 0.2;
    }
}

/* Star streak animation */
@keyframes dropvader-streak {
    from {
        width: 0;
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    60% {
        opacity: 1;
    }
    to {
        width: 200px;
        opacity: 0;
    }
}

/* Hyperspace tunnel effect */
@keyframes dropvader-tunnel {
    from {
        transform: translateZ(-1000px);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    to {
        transform: translateZ(500px);
        opacity: 0;
    }
}

/* Drop Zone Styles */
.dropvader-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.dropvader-dropzone {
    position: relative;
    width: 450px; /* 25% smaller than 600px */
    height: 300px; /* 25% smaller than 400px */
    border: 3px dashed #907bd5;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0); /* Changed to fully opaque black */
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    margin-right: 20px; /* Add space between dropzone and file list */
}

.dropvader-dropzone.dropvader-dragover {
    background-color: rgb(25, 17, 58); /* Changed to a dark purple opaque color */
    border-color: #7F61E3;
    box-shadow: 0 0 20px rgba(95, 65, 195, 0.6);
}

.dropvader-dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.dropvader-icon {
    margin-bottom: 10px; /* Further reduced margin to balance with even larger icon */
}

.dropvader-svg-icon {
    width: 127px; /* Another 30% bigger than 98px */
    height: 127px; /* Another 30% bigger than 98px */
    animation: dropvader-pulse 2s infinite ease-in-out;
    Xfilter: drop-shadow(0 0 3px rgba(95, 65, 195, 0.5));
}

@keyframes dropvader-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.dropvader-dropzone-text {
    margin: 6px 0;
    font-size: 16px; /* Changed from 18px to 16px as requested */
    font-weight: bold;
    font-family: 'Courier New', monospace; /* Monospace font */
    color: #907bd5; /* Purple color */
    text-transform: capitalize; /* Proper case */
}

.dropvader-dropzone-subtext {
    margin: 6px 0;
    font-size: 12px;
    font-family: 'Courier New', monospace; /* Monospace font */
    color: #907bd5; /* Purple color */
    text-transform: capitalize; /* Proper case */
}

/* File List Styles */
.dropvader-file-list-container {
    position: relative;
    width: 450px;
    height: 300px; /* Match height with dropzone */
    background-color: rgb(0, 0, 0); /* Changed to fully opaque black */
    border-radius: 10px;
    border: 2px solid #907bd5; /* Updated to #907bd5 */
    padding: 0; /* Removed padding to accommodate header */
    color: white;
    overflow: hidden; /* Changed from overflow-y to handle the header properly */
    display: block; /* Always visible as requested */
    z-index: 11; /* Ensure it's above the stars and other background elements */
}

.dropvader-file-list-header {
    background-color: rgb(0, 0, 0); /* Match container background - fully opaque */
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #907bd5; /* Updated to #907bd5 */
    margin-bottom: 0;
    position: absolute; /* Fixed position at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 25; /* Ensure it's above the file list */
	opacity: 1;
	height: 35px;
}

.dropvader-file-list-footer {
    background-color: rgb(0, 0, 0); /* Match container background - fully opaque */
    padding: 10px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid #907bd5;
    margin-top: 0;
    display: block; /* Always visible like the header */
    position: absolute; /* Fixed position at the bottom */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15; /* Increased z-index to ensure it's above all other elements in the file list */
}

.dropvader-file-list-title {
    color: #907bd5; /* Updated to #907bd5 */
    margin: 0;
    font-size: 16px; /* Changed from 14px to 16px as requested */
    text-align: center;
    font-family: 'Courier New', monospace; /* Monospace font */
    text-transform: capitalize; /* Proper case */
    letter-spacing: 1px; /* Added for better readability */
    font-weight: bold; /* Added for emphasis */
}

.dropvader-file-list {
    list-style: none;
    margin: 0;
    padding: 15px;
    max-height: 225px; /* Adjusted for the new container height */
    overflow-y: auto; /* Added scroll for the list only */
    font-family: 'Courier New', monospace; /* Monospace font */
    color: #907bd5; /* Updated to #907bd5 */
    font-size: 14px; /* Changed from 10px to 14px as requested */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #907bd5 rgba(0, 0, 0, 0.2); /* Firefox */
    position: relative;
    margin-top: 25px; /* Space for the header */
    margin-bottom: 50px; /* Space for the footer */
    z-index: 12; /* Increased to ensure it's above the container and stars */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    touch-action: pan-y; /* Explicitly allow vertical touch scrolling */
}



/* Webkit scrollbar styling (Chrome, Safari, Edge) */
.dropvader-file-list::-webkit-scrollbar {
    width: 8px; /* Wider scrollbar for easier touch interaction */
}

.dropvader-file-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); /* Subtle track */
    border-radius: 3px;
}

.dropvader-file-list::-webkit-scrollbar-thumb {
    background-color: #907bd5; /* Purple scrollbar thumb */
    border-radius: 3px;
}

.dropvader-file-list::-webkit-scrollbar-thumb:hover {
    background-color: #907bd5; /* Lighter purple on hover */
}

.dropvader-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px; /* Fixed height of 35px for all screen sizes */
    border-bottom: 1px solid rgba(95, 65, 195, 0.3); /* Updated to match #907bd5 */
    transition: background-color 0.2s ease;
    font-family: 'Courier New', monospace; /* Monospace font */
}

.dropvader-file-item:last-child {
    border-bottom: none;
}

.dropvader-file-item:hover {
    background-color: rgba(95, 65, 195, 0.2); /* Updated to match #907bd5 */
}

.dropvader-file-icon {
    width: 48px; /* 3x bigger from 16px */
    height: 48px; /* 3x bigger from 16px */
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.dropvader-file-name {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    color: #7F61E3; /* Updated to a lighter shade of #907bd5 */
    display: flex;
    align-items: center;
	font-size: 16px;
}

.dropvader-file-size {
    color: #907bd5; /* Updated to #907bd5 */
    font-size: 16px; /* Changed from 10px to 14px as requested */
    opacity: 0.8; /* Slightly dimmed for visual hierarchy */
}

.dropvader-file-type {
    background-color: transparent; /* Removed background color as requested */
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px; /* Changed from 10px to 14px as requested */
    margin-left: 10px;
    color: rgb(95, 65, 195); /* Updated to rgb(95, 65, 195) */
    border: 1px solid #907bd5; /* Updated to #907bd5 */
}

/* Remove button */
.dropvader-file-remove {
    background-color: transparent;
    border: none;
    color: #907bd5;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    padding: 0 5px;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.dropvader-file-remove:hover {
    background-color: rgba(95, 65, 195, 0.2);
    color: #ff3366;
}

.dropvader-usage-container {
    width: 100%;
    text-align: center;
    color: #6657A6;
    font-family: 'Courier New', monospace;
    font-size: 14px;
	font-weight: bold;
    z-index: 3; /* Ensure it's above everything else in the footer */
}

.dropvader-footer-text {
    width: 100%;
    text-align: center;
    color: #7F61E3;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-style: italic;
    z-index: 3; /* Ensure it's above everything else in the footer */
}

.dropvader-usage-bar {
    height: 6px;
    background-color: rgb(25, 17, 58); /* Updated to a darker shade of #907bd5 */
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.dropvader-usage-progress {
    height: 100%;
    background-color: #907bd5;
    width: 0%; /* Will be set by JavaScript */
    transition: width 0.3s ease;
}

/* Alert styles */
.dropvader-alert {
    position: absolute;
    top: calc(15px + 60px + 10px + 30px); /* Position 30px below the tagline */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background-color: #380000; /* Default dark red background for errors - will be changed by JS for success messages */
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    text-align: center;
    z-index: 20; /* Higher than other elements */
    display: none; /* Hidden by default */
    animation: dropvader-fade-in 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(56, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative; /* For positioning the close button */
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

.dropvader-alert-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dropvader-alert-close:hover {
    opacity: 1;
}

.dropvader-alert-message {
    display: block;
    padding-right: 20px; /* Space for the close button */
    word-wrap: break-word;
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Take full width of the alert */
    line-height: 1.5; /* Better spacing between lines */
}

.dropvader-signup-link {
    color: #7F61E3;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dropvader-signup-link:hover {
    color: white;
    text-decoration: none;
}

@keyframes dropvader-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Plan badge */
.dropvader-plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #907bd5;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: normal;
    z-index: 10;
    display: none; /* Hide plan badge as requested */
}

/* Copyright Footer Styles */
.dropvader-copyright-footer {
    position: fixed; /* Keep fixed position to stay at bottom of viewport */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Set fixed height to 50px as requested */
    background-color: rgb(0, 0, 0); /* Changed to fully opaque black */
    color: #7F61E3;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 0 20px; /* Removed vertical padding to ensure proper vertical centering */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; /* Ensure items are horizontally centered */
    border-top: 1px solid rgb(95, 65, 195); /* Updated to #907bd5 */
    z-index: 20; /* Add z-index to ensure it's above other elements */
}

.dropvader-copyright-text {
    margin: 0 0 5px 0; /* Add bottom margin for spacing between text and links */
    text-align: center;
    width: 100%;
}

.dropvader-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}


.dropvader-footer-link {
    color: #AD95DA;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
    padding: 0; /* Removed padding */
    display: inline-block; /* Ensure padding works properly */
    position: relative; /* For z-index to work */
    z-index: 21; /* Higher than the footer */
}

.dropvader-footer-link:hover {
    color: #AD95DA;
    text-decoration: underline;
}

/* Ensure mailto link works properly */
.dropvader-footer-link[href^="mailto:"] {
    z-index: 22; /* Even higher z-index for mailto links */
}

/* Modal Styles */
.dropvader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 30;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropvader-modal-content {
    width: 450px; /* Same width as dropzone */
    max-width: 90%; /* Ensure it doesn't overflow on small screens */
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #907bd5;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    color: white;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 20px rgba(95, 65, 195, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.dropvader-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #7F61E3;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dropvader-modal-close:hover {
    color: white;
}

.dropvader-modal-title {
    color: #907bd5;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.dropvader-modal-subtitle {
    color: #7F61E3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
}

.dropvader-signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dropvader-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropvader-form-group label {
    color: #7F61E3;
    font-size: 14px;
}

.dropvader-form-group input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #907bd5;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.dropvader-form-group input:focus {
    outline: none;
    border-color: #7F61E3;
    box-shadow: 0 0 5px rgba(95, 65, 195, 0.5);
}

.dropvader-submit-btn {
    background-color: #907bd5;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    letter-spacing: 1px;
}

.dropvader-submit-btn:hover {
    background-color: #7F61E3;
}

/* Send button container */
.dropvader-send-button-container {
    display: none; /* Hidden by default */
    width: 100%;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 50px; /* Position above the footer */
    left: 0;
    right: 0;
    z-index: 16; /* Above the file list but below the header */
}

/* Send button styling */
.dropvader-send-btn {
    background-color: #5F41C3;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(95, 65, 195, 0.4);
}

.dropvader-send-btn:hover {
    background-color: #7F61E3;
    box-shadow: 0 0 15px rgba(95, 65, 195, 0.6);
    transform: translateY(-2px);
}

/* Iframe Modal Styles */
.dropvader-iframe-modal-content {
    width: 80%;
    max-width: 900px;
    height: 80%;
    max-height: 700px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent double scrollbars */
}

/* May 4th Modal Styles */
.dropvader-may-modal-content {
    width: 400px;
    max-width: 90%;
    padding: 25px;
    text-align: center;
}

.dropvader-may-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropvader-iframe-container {
    flex: 1;
    overflow: auto !important; /* Added !important to ensure content is scrollable */
    border-radius: 5px;
    margin-top: 0px; /* Changed from 10px to 0px as requested */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #907bd5 rgba(0, 0, 0, 0.2); /* Firefox */
    position: relative; /* Ensure proper positioning */
}

.dropvader-iframe-container::-webkit-scrollbar {
    width: 4px; /* Thin scrollbar */
}

.dropvader-iframe-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); /* Subtle track */
    border-radius: 3px;
}

.dropvader-iframe-container::-webkit-scrollbar-thumb {
    background-color: #907bd5; /* Purple scrollbar thumb */
    border-radius: 3px;
}

.dropvader-iframe-container::-webkit-scrollbar-thumb:hover {
    background-color: #7F61E3; /* Lighter purple on hover */
}

#dropvader-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    overflow: auto !important; /* Added !important to ensure content is scrollable */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #907bd5 rgba(0, 0, 0, 0.2); /* Firefox */
    display: block; /* Ensure proper display */
}

#dropvader-iframe::-webkit-scrollbar {
    width: 4px; /* Thin scrollbar */
}

#dropvader-iframe::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); /* Subtle track */
    border-radius: 3px;
}

#dropvader-iframe::-webkit-scrollbar-thumb {
    background-color: #907bd5; /* Purple scrollbar thumb */
    border-radius: 3px;
}

#dropvader-iframe::-webkit-scrollbar-thumb:hover {
    background-color: #5E43C3; /* Lighter purple on hover */
}

/* Touch improvements */
.dropvader-dropzone,
.dropvader-modal-close,
.dropvader-footer-link,
.dropvader-submit-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(78, 51, 179, 0.2);
    touch-action: manipulation;
}

/* File item touch handling - allow scrolling */
.dropvader-file-item {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(78, 51, 179, 0.2);
}

/* Touch target sizes */
.dropvader-modal-close {
    min-height: 44px;
}

/* Upload Results Modal Styles */
#dropvader-upload-results-modal .dropvader-modal-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
}

#dropvader-upload-results-modal .dropvader-modal-title {
    background-color: rgb(0, 0, 0);
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #907bd5;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 25;
    opacity: 1;
    height: 35px;
}

.dropvader-modal-title {
    color: #907bd5;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dropvader-modal-subtitle {
    color: #907bd5;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.dropvader-upload-results-list {
    list-style: none;
    margin: 0;
    padding: 15px;
    max-height: 50vh;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    color: #907bd5;
    font-size: 14px;
    scrollbar-width: thin;
    scrollbar-color: #907bd5 rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.dropvader-upload-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    border-bottom: 1px solid rgba(95, 65, 195, 0.3);
    transition: background-color 0.2s ease;
    font-family: 'Courier New', monospace;
    padding: 0;
}

.dropvader-upload-result-item:last-child {
    border-bottom: none;
}

.dropvader-upload-result-item:hover {
    background-color: rgba(95, 65, 195, 0.2);
}

.dropvader-upload-result-filename {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    color: #7F61E3;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.dropvader-upload-result-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dropvader-upload-result-copy-btn,
.dropvader-upload-result-open-btn,
.dropvader-upload-result-share-btn,
.dropvader-upload-result-email-btn {
    background-color: transparent;
    color: #907bd5;
    border: none;
    padding: 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropvader-upload-result-copy-btn svg,
.dropvader-upload-result-open-btn svg,
.dropvader-upload-result-share-btn svg,
.dropvader-upload-result-email-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    color: #907bd5; /* For SVGs using currentColor */
}

/* Special styling for the share button SVG */
.dropvader-upload-result-share-btn {
    background-color: transparent; /* Transparent background */
    border-radius: 3px;
}

.dropvader-upload-result-share-btn svg {
    stroke: #907bd5; /* Match other buttons */
}

.dropvader-upload-result-share-btn svg path {
    stroke: #907bd5; /* Match other buttons */
}

.dropvader-upload-result-copy-btn:hover,
.dropvader-upload-result-open-btn:hover {
    background-color: rgba(95, 65, 195, 0.2);
}

.dropvader-upload-result-share-btn:hover {
    background-color: rgba(95, 65, 195, 0.2); /* Match other buttons hover */
}

/* Special styling for the email button SVG */
.dropvader-upload-result-email-btn {
    background-color: transparent; /* Transparent background */
    border-radius: 3px;
}

.dropvader-upload-result-email-btn svg {
    stroke: #907bd5; /* Match other buttons */
}

.dropvader-upload-result-email-btn svg path,
.dropvader-upload-result-email-btn svg rect {
    stroke: #907bd5; /* Match other buttons */
}

.dropvader-upload-result-email-btn:hover {
    background-color: rgba(95, 65, 195, 0.2); /* Match other buttons hover */
}

.dropvader-upload-modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 10px 10px;
}

/* Skipped files section styles */
.dropvader-upload-result-header {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: rgba(95, 65, 195, 0.1);
    border-radius: 5px;
}

.dropvader-upload-result-header p {
    margin: 0;
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
}

.dropvader-upload-skipped-section {
    margin-top: 20px;
    border-top: 1px solid rgba(95, 65, 195, 0.3);
    padding-top: 15px;
}

.dropvader-upload-skipped-header {
    color: #ff6b6b;
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: normal;
    text-align: center;
}

.dropvader-upload-skipped-list {
    margin-top: 10px;
}

.dropvader-upload-skipped-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    border-bottom: 1px solid rgba(95, 65, 195, 0.3);
    transition: background-color 0.2s ease;
    font-family: 'Courier New', monospace;
    padding: 0;
}

.dropvader-upload-skipped-item:last-child {
    border-bottom: none;
}

.dropvader-upload-skipped-item:hover {
    background-color: rgba(95, 65, 195, 0.1);
}

.dropvader-upload-skipped-reason {
    color: #ff6b6b;
    font-size: 14px;
    white-space: nowrap;
    padding-right: 10px;
}

