/* 
 * HR Puls Karriere Accessibility CSS
 * Addresses WCAG 2.2 AA compliance for all client job sites
 * Maintains brand identity while fixing accessibility violations
 */

/* ==================================================
   USERCENTRICS COOKIE CONSENT ACCESSIBILITY FIXES
   ================================================== */
   html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .body_100, .frontend_task_row .col-12, .customer_top,.customer_bottom .container-fluid{
    padding: 0;
  }
  .col-12.head_frontend_description{
    padding: 20px;
  }
  .frontend_task{
    padding: 0 30px;
  }
  .job_detail_body{
    padding: 0;
  }
  .customer_bottom .container-fluid{
    padding-left: 0;
    padding-right: 0;
  }
/* ==================================================
   KEYBOARD NAVIGATION & FOCUS IMPROVEMENTS - MODERN DESIGN
   
   Modern Focus Design Principles:
   - Uses professional blue (#0066cc) instead of bright yellow
   - 2px outline with subtle shadow for depth
   - Maintains 3:1 contrast ratio for WCAG compliance
   - Adapts to different backgrounds (light outline on dark elements)
   - Supports high contrast and forced colors modes
   - Smooth transitions for better UX
   - Only shows for keyboard navigation via :focus-visible
   ================================================== */

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000000;
  color: #ffffff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.skip-to-main:focus-visible {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
  border-color: #ffffff;
}

/* Ensure skip link is visible on focus for all screen readers */
.skip-to-main:focus-visible,
.skip-to-main:active {
  position: absolute !important;
  top: 0 !important;
  left: 6px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  z-index: 9999 !important;
}

/* Ensure focus is visible even with custom styled elements - KEYBOARD ONLY */
.btn:focus-visible,
.btn_custom_filter:focus-visible,
.apply-section a:focus-visible,
.job-offer-list-div-container:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

/* Special focus for buttons with background colors - KEYBOARD ONLY */
.btn-action:focus-visible,
.btn-primary:focus-visible,
button[class*="btn-"]:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2), 0 0 0 6px rgba(255, 255, 255, 0.3);
}

/* Dark buttons get light focus indicator - KEYBOARD ONLY */
.btn-dark:focus-visible,
button[style*="background-color: #"]:focus-visible,
button[style*="background: #"]:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Specific styles for job detail buttons - KEYBOARD ONLY */
.job_detail_buttons_bottom .btn:focus-visible,
.job_detail_buttons_top .btn:focus-visible,
.btn-bewerbung-for:focus-visible,
.btn-100:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.25);
  transition: box-shadow 0.2s ease;
}

/* Links that look like buttons - KEYBOARD ONLY */
a[href*="bewerbung"]:focus-visible,
.apply-section a:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
  text-decoration: none;
}


/* High contrast mode - maintain visibility */
@media (prefers-contrast: high) {
  *:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
  }
  
  .btn-dark:focus-visible,
  button[style*="background-color: #"]:focus-visible {
    outline: 3px solid #ffffff;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.9);
  }
  
  .banner-text {
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    text-shadow: none;
    padding: 16px 24px;
    border: 3px solid #ffffff;
  }
  
  .job-offer-list-div-container,
  .btn_custom_filter,
  .apply-section a {
    border-width: 3px;
    border-style: solid;
  }
  
  /* Ensure all interactive elements have sufficient contrast */
  a, button, [role="button"] {
    font-weight: 600;
  }
}

/* Forced colors mode (Windows High Contrast) */
@media (forced-colors: active) {
  *:focus-visible {
    outline: 2px solid ButtonText;
    outline-offset: 2px;
  }
}

/* ==================================================
   MOTION & ANIMATION ACCESSIBILITY
   ================================================== */

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  /* Remove parallax and complex transforms */
  .banner-text,
  .bottom-top-image,
  .job-offer-list-div-container {
    transform: none;
  }
}


/* Ensure form inputs have proper contrast and sizing */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  min-height: 40px;
  border: 1px solid #666666;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 0;
}
.form-label-group select, .form-label-group input:not(:placeholder-shown){
  padding-top: 15px;
}
/* Hide placeholders for application form inputs (all clients) */
.application_input::placeholder,
.application_input::-webkit-input-placeholder,
.application_input::-moz-placeholder,
.application_input:-ms-input-placeholder {
  color: transparent !important;
  opacity: 0 !important;
  }

/* ==================================================
   RESPONSIVE TEXT & VIEWPORT ACCESSIBILITY
   ================================================== */

/* Prevent horizontal scrolling */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure text can be zoomed to 200% without horizontal scrolling */
@media (max-width: 768px) {
  .banner-text {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    line-height: 1.2 !important;
    padding: 12px !important;
  }
  
  .job-offer-list-div-title a {
    font-size: clamp(1rem, 4vw, 1.5rem) !important;
    line-height: 1.3 !important;
  }
}

/* ==================================================
   SCREEN READER & ASSISTIVE TECHNOLOGY SUPPORT
   ================================================== */

/* Screen reader only content */
.sr-only,
.vhidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


.job-offer-list-div-container {
  display: block;
  position: relative;
}

/* Ensure table headers are properly structured */
.table_fixed thead th {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 2px solid #dee2e6;
}

/* Improve table accessibility */
.table_fixed {
  border-collapse: collapse;
  width: 100%;
}

.table_fixed tbody tr {
  border-bottom: 1px solid #dee2e6;
}


/* Required field indicators */
[required]::after,
.required::after {
  content: " *";
  color: #cc0000;
  font-weight: bold;
  font-size: 1.2em;
}

/* Error state styling */
.error,
[aria-invalid="true"] {
  border-color: #cc0000 !important;
  background-color: #fff5f5 !important;
}

.error-message {
  color: #cc0000;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
  display: block;
}

.error-message[role="alert"] {
  border-left: 3px solid #cc0000;
  padding-left: 8px;
  background-color: rgba(204, 0, 0, 0.05);
  padding: 4px 8px;
  border-radius: 2px;
}

/* ==================================================
   UNIVERSAL FIXES FOR ALL CLIENTS
   ================================================== */

/* Ensure all interactive elements have sufficient target size */
button,
.btn,
a[role="button"],
input[type="submit"],
input[type="button"] {
  min-height: 24px ;
  min-width: 24px ;
  box-sizing: border-box;
}

/* Enhanced visibility for keyboard users */
body.keyboard-navigation *:focus {
  outline-width: 3px;
}

/* Hide focus for mouse users (will be shown for keyboard users via JS) */
body:not(.keyboard-navigation) *:focus:not(:focus-visible) {
  outline: none ;
  box-shadow: none ;
}
#send_bewerbung{
  display: flex !important;
  justify-content: center;
  align-items: center;
}
/* ==================================================
   BUTTON ACCESSIBILITY FIXES
   ================================================== */
.head_right{
  margin-top: 6px;
}
.head_right .btn {
  min-width: 48px;
  min-height: 48px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:6px;
}
.lang_option_wrapper{
  font-weight:600 !important;
}
a[href*="login.html"] .btn{
  min-width: 48px !important;
  min-height: 48px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgba(0, 0, 0, .05));
  color: #414141;
}
.lang_dropdown{
  min-width: 48px !important;
  min-height: 48px !important;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgba(0, 0, 0, .05));
  color: #414141;
  border-radius:5px; 
  border: 1px solid oklch(0.872 0.01 258.338);
}
.lang_dropdown label{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang_dropdown label, .lang_dropdown ul a.lang{
  width: 46px;
}
.shadow_1, .lang_dropdown ul.lang_list:hover, .lang_dropdown label:hover{
  box-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgba(0, 0, 0, .05));
}
a[href*="login.html"] .btn:hover{
  background-color: #eee;
  border-color: #414141;
  color: #414141;
}
#btn-login {
  text-shadow: none;
  min-width: 48px;
  min-height: 48px;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-login:hover {
  text-shadow: none;
  background-color: #eee;
  border-color: #414141;
  color: #414141;
}

.btn-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.job_detail_buttons_top .btn,
.job_detail_buttons_bottom .btn,
.job_detail_buttons_top_back a,
.job_detail_buttons_bottom_back a,
.job_detail_buttons_top_bewerben a,
.job_detail_buttons_bottom_bewerben a {
  min-width: 250px;
  min-height: 24px;
  padding: 12px 24px;
  margin: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job_detail_buttons_top_back a,
.job_detail_buttons_bottom_back a ,
.job_detail_buttons_top_bewerben a,
.job_detail_buttons_bottom_bewerben a {
  text-decoration: none;
}
/* ==================================================
   FOOTER & LINK ACCESSIBILITY
   ================================================== */

.col-agb > a,
.col-impressum > a,
.col-datenschutz > a {
  min-width: 48px;
  min-height: 48px;
  padding: 12px 16px;
  margin: 4px;
  display: inline-block;
  text-shadow: none;
  line-height: 1.2;
  box-sizing: border-box;
}

.col-agb > a[target="_blank"],
.col-impressum > a[target="_blank"],
.col-datenschutz > a[target="_blank"] {
  display: inline-block;
  min-width: 48px;
  min-height: 48px;
  padding: 12px 16px;
  vertical-align: middle;
  box-sizing: border-box;
}



.powered-by a {
  min-height: 48px;
  min-width: 48px;
  padding: 12px 16px;
  display: inline-block;
  margin: 4px 0;
  box-sizing: border-box;
}

#footer .row .col {
  margin: 4px 0 !important;
}
#header{
  z-index: 101;
}
/* ==================================================
   SOCIAL MEDIA BUTTON ACCESSIBILITY FIXES (WCAG 2.2)
   ================================================== */

.btn-fb,
.btn-tweet, 
.btn-linkedin,
.btn-xing,
.btn-whatsapp,
.btn-telegram,
.btn-mail,
.btn-printer {
  position: relative !important;
  min-height: 44px !important;
  min-width: 44px !important;
  padding: 12px !important;
}

.job_detail_social_icon {
  margin: 8px !important;
  display: inline-block !important;
}

.job_detail_social_icon a {
  min-height: 44px !important;
  min-width: 44px !important;
  display: inline-block !important;
  padding: 4px !important;
  box-sizing: border-box !important;
  margin: 2px !important;
}

.job_detail_socials {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 8px 0 !important;
  margin: 0 !important; 
}

.job_detail_social_icon button {
  box-sizing: border-box !important;
  position: relative !important;
  height: 48px !important;
  width: 48px !important;
  margin: 2px !important;
}

.frontend_task_row {
  width: 100% !important;
  margin: 0 auto !important;
}

.row {
  margin: 0 auto ;
}
.ats_form_body .form-label-group.textarea > label, .form-label-group.select > label, .ats_form_body input.form-control{
  font-size: 14px ;
}

/* ==================================================
   LAYOUT & POSITIONING FIXES
   ================================================== */

.back-to-top {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  top: auto !important;
  z-index: 1000 !important;
}

.bewerbungs_task_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
  }

.job_detail_head {
  padding-right: 15px;
  padding-left: 15px;
}

#job-offer-list-id {
  margin: 0 auto 50px auto !important;
  }

/* ==================================================
   PRINT ACCESSIBILITY
   ================================================== */

@media print {
  .skip-to-main,
  .btn_custom_filter,
  [role="banner"],
  [role="navigation"] {
    display: none !important;
}
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666666;
}
}

/* ==================================================
   CUSTOM FILTER LAYOUT RESTORATION - HORIZONTAL DESIGN
   ================================================== */

#custom_filter_container {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 40px !important;
}

#custom_filter_container .form-label-group.select > label {
  display: none;
}

#custom_filter_container .row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

#custom_filter_container .row:last-child {
  margin-bottom: 0;
}

#custom_filter_container .row > div {
  padding-left: 0;
  padding-right: 15px;
}

#custom_filter_container .filter_title_frontend {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
  padding-right: 20px;
  margin-bottom: 0;
  min-height: 40px;
  flex-shrink: 0;
}

#custom_filter_container .custom_search_container {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex: 1;
  padding-bottom: 10px !important;
}

#custom_filter_container #customSearch {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #ffffff;
  height: 38px;
  box-sizing: border-box;
}

#custom_filter_container #customSearch:focus-visible {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#custom_filter_container .col-md-10 {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 0;
}

#custom_filter_container .col-md-10 .row {
  width: 100%;
  margin: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#custom_filter_container .col-md-4 {
  margin-bottom: 0;
  padding: 0 15px 0 0;
  flex: 0 0 auto;
}

#custom_filter_container .checkbox {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 0;
  white-space: nowrap;
}

#custom_filter_container .checkbox input {
  margin-right: 6px;
  margin-top: 0;
  margin-bottom: 0;
}

#custom_filter_container .checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  line-height:normal;
  overflow: visible;
}

#custom_filter_container select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  height: 38px;
  box-sizing: border-box;
}

#custom_filter_container .col-md-4 {
  padding-right: 15px;
  margin-bottom: 0;
}

#custom_filter_container #citywrap,
#custom_filter_container #distancewrap {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

#custom_filter_container #citywrap label,
#custom_filter_container #distancewrap label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 14px;
  color: #495057;
}

#custom_filter_container #city,
#custom_filter_container #distance {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  background-color: #ffffff;
  height: 38px;
  box-sizing: border-box;
}

#custom_filter_container .col-md-3.offset-md-6,
#custom_filter_container .col-md-3.mt-3.mt-md-0.suchen_btn_container {
  padding-left: 15px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#custom_filter_container .suchen_btn_container {
  margin-top: 0;
}

#custom_filter_container .suchen_btn {
  padding: 9px 20px;

  border-radius: 4px;
  min-width: 120px;
  height: 38px;
  box-sizing: border-box;
}

#custom_filter_container .btn-100 {
  padding: 8px 16px;
  border-radius: 4px;
  min-width: 100px;
  height: 38px;
  box-sizing: border-box;
  margin-right: 10px;
}


#custom_filter_container .col-md-2 + .col-md-10 {
  border-left: none;
  padding-left: 0;
}

#custom_filter_container .col-md-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

#custom_filter_container .col-md-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

#custom_filter_container .col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

#custom_filter_container .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Responsive behavior for tablets */
@media (max-width: 991px) {
  #custom_filter_container .filter_title_frontend {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 8px;
    min-height: auto;
  }
  
  #custom_filter_container .row {
    margin-bottom: 20px;
  }
  
  #custom_filter_container .col-md-2,
  #custom_filter_container .col-md-10,
  #custom_filter_container .col-md-3,
  #custom_filter_container .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #custom_filter_container .col-md-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
}

/* Responsive behavior for mobile */
@media (max-width: 768px) {
  #custom_filter_container {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  #custom_filter_container .row {
    margin-bottom: 15px;
    flex-direction: column;
    align-items: stretch;
  }
  
  #custom_filter_container .filter_title_frontend {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 8px;
    min-height: auto;
    padding-right: 0;
  }
  
  #custom_filter_container .checkbox {
    margin-bottom: 8px;
  }
  
  #custom_filter_container .col-md-3.offset-md-6,
  #custom_filter_container .suchen_btn_container {
    justify-content: center;
    margin-top: 15px;
    padding-left: 0;
  }
  
  #custom_filter_container .col-md-2,
  #custom_filter_container .col-md-10,
  #custom_filter_container .col-md-3,
  #custom_filter_container .col-md-4 {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-right: 0;
  }
}

/* Keyboard navigation support */
.keyboard-navigation *:focus-visible {
    outline: 3px solid #007acc !important;
    outline-offset: 2px !important;
}

/* Screen reader only content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007acc;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus-visible {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        border: 2px solid currentColor !important;
    }
    
}

/* ==================================================
   DROPZONE FILE UPLOAD ACCESSIBILITY
   ================================================== */

/* Improve dropzone accessibility */
.dropzone {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 4px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.dropzone:focus-within {
    border-color: #0066cc;
    background-color: #f0f8ff;
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.dropzone .dz-default.dz-message {
    text-align: center;
    margin: 0;
    padding: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.dropzone .dz-default.dz-message:focus-visible {
    background-color: rgba(0, 102, 204, 0.1);
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.dropzone .dz-default.dz-message:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

/* Screen reader only description for dropzone */
.dropzone + .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Improve dropzone file preview accessibility */
.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    margin: 0.5em;
}

.dropzone .dz-preview .dz-image {
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accessible remove button for uploaded files */
.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
    background: none;
    color: #cc0000;
    text-decoration: underline;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.dropzone .dz-preview .dz-remove:hover,
.dropzone .dz-preview .dz-remove:focus-visible {
    background-color: rgba(204, 0, 0, 0.1);
    outline: 2px solid #cc0000;
    outline-offset: 2px;
}

/* High contrast mode support for dropzone */
@media (prefers-contrast: high) {
    .dropzone {
        border-color: #000000;
        background-color: #ffffff;
    }
    
    .dropzone:focus-within {
        border-color: #000000;
        background-color: #ffffff;
        outline: 3px solid #000000;
    }
    
    .dropzone .dz-preview .dz-remove {
        border: 2px solid currentColor;
        background-color: #ffffff;
        color: #000000;
    }
}

/* Reduced motion support for dropzone */
@media (prefers-reduced-motion: reduce) {
    .dropzone,
    .dropzone .dz-default.dz-message,
    .dropzone .dz-preview .dz-remove {
        transition: none;
    }
}