body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
}

.dropzone {
    border: 3px dashed #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    padding: 3rem;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone:hover, .dropzone.dragover {
    border-color: #0d6efd;
    background-color: #e7effd;
}

.dropzone-content {
    color: #6c757d;
}

#file-name-display {
    overflow-wrap: break-word;
}

#share-link {
    cursor: pointer;
}

#qrcode-container {
    padding: 10px;
    background: white;
    display: inline-block;
    border-radius: 5px;
}

#qrcode-container img {
    display: block;
}

/* Animation for drag and drop */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.dropzone.dragover {
    animation: pulse 1s infinite;
}

/* Enhanced form styles */
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* File options buttons */
.file-options-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.file-option-button {
    flex: 1;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.file-option-button:hover {
    transform: translateY(-5px);
}

.file-option-button i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Password form */
.password-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

/* Force hiding elements */
.force-hide {
    display: none !important;
}

/* Language switcher styles to match the screenshot */
.language-switcher {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.language-switcher a {
    display: inline-block;
    text-decoration: none;
    color: #666;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.language-switcher a.active {
    color: #fff;
    background-color: #0d6efd;
}

.language-switcher a:hover:not(.active) {
    background-color: #f0f0f0;
}

/* Footer links styles to match the screenshot */
.footer-container {
    margin-top: 40px;
    padding: 15px 0;
    text-align: center;
}

.footer-links {
    font-size: 14px;
    color: #666;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #0d6efd;
    text-decoration: underline;
}