
 /* Modern Tab Styling */
 .upload-wrapper {
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   padding: 30px;
   margin-bottom: 30px;
 }

 .upload-wrapper h4 {
   margin-top: 0;
   margin-bottom: 25px;
   font-size: 24px;
   font-weight: 600;
 }

 /* Custom Modern Tabs */
 .modern-tabs {
   border-bottom: 2px solid #e8e8e8;
   margin-bottom: 30px;
   padding: 0;
   display: flex;
   gap: 0;
 }

 .modern-tabs li {
   list-style: none;
   margin-bottom: -2px;
 }

 .modern-tabs li a {
   display: block;
   padding: 15px 30px;
   color: #666;
   text-decoration: none;
   border: none;
   border-bottom: 3px solid transparent;
   background: transparent;
   font-weight: 500;
   font-size: 15px;
   transition: all 0.3s ease;
   border-radius: 0;
   margin-right: 0;
 }

 .modern-tabs li a:hover {
   background: #f8f9fa;
   color: #333;
   border-bottom-color: #ddd;
 }

 .modern-tabs li.active a,
 .modern-tabs li.active a:hover,
 .modern-tabs li.active a:focus {
   color: #a80f4f;
   background: transparent;
   border: none;
   border-bottom: 3px solid #a80f4f;
 }

 .modern-tabs li a i {
   margin-right: 8px;
   font-size: 16px;
 }

 /* Tab Content Styling */
 .tab-content {
   padding: 0;
   background: transparent;
 }

 .tab-pane {
   animation: fadeIn 0.4s ease-in;
 }

 @keyframes fadeIn {
   from {
	 opacity: 0;
	 transform: translateY(10px);
   }
   to {
	 opacity: 1;
	 transform: translateY(0);
   }
 }

 /* Modern Form Styling */
 .modern-form .form-group {
   margin-bottom: 20px;
 }

 .modern-form label {
   font-weight: 500;
   color: #333;
   margin-bottom: 8px;
 }

 .modern-form .form-control {
   border: 1px solid #ddd;
   border-radius: 6px;
   padding: 10px 15px;
   font-size: 14px;
   transition: all 0.3s ease;
   box-shadow: 0 1px 2px rgba(0,0,0,0.05);
 }

 .modern-form .form-control:focus {
   border-color: #a80f4f;
   box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
   outline: none;
 }

 .modern-form .help-block {
   font-size: 12px;
   color: #999;
   margin-top: 5px;
 }

 .modern-form .checkbox {
   margin-top: 10px;
   margin-bottom: 10px;
 }

 .modern-form .checkbox label {
   font-weight: 400;
   color: #666;
   padding-left: 5px;
 }

 /* Modern Uppy Wrapper */
 .uppy-wrapper {
   min-height: 280px;
   border: 2px dashed #d0d0d0;
   border-radius: 8px;
   padding: 20px;
   text-align: center;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
 }

 .uppy-wrapper:hover {
   border-color: #a80f4f;
   background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
 }

 .uppy-wrapper::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: radial-gradient(circle at 50% 50%, rgba(0,123,255,0.05) 0%, transparent 70%);
   pointer-events: none;
 }

 #uppy-drag-drop {
   position: relative;
   z-index: 1;
 }

 .uppy-DragDrop-container {
   border: none !important;
   background: transparent !important;
 }

 .uppy-DragDrop-inner {
   padding: 40px 20px !important;
 }

 #uppy-progress {
   margin-top: 15px;
   position: relative;
   z-index: 1;
 }

 /* Modern Buttons */
 .btn-modern {
   border-radius: 6px;
   padding: 10px 24px;
   font-weight: 500;
   font-size: 14px;
   transition: all 0.3s ease;
   border: none;
   box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 }

 .btn-modern:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0,0,0,0.15);
 }

 .btn-modern:active {
   transform: translateY(0);
 }

 .btn-modern i {
   margin-right: 6px;
 }

 .btn-primary.btn-modern {
   background: linear-gradient(135deg, #a80f4f 0%, #a80f4f 100%);
 }

 .btn-primary.btn-modern:hover {
   background: linear-gradient(135deg, #a80f4f 0%, #a80f4f 100%);
 }

 /* Modern Alert */
 .modern-alert {
   border-radius: 6px;
   border: none;
   padding: 15px 20px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   animation: slideDown 0.3s ease;
 }

 @keyframes slideDown {
   from {
	 opacity: 0;
	 transform: translateY(-10px);
   }
   to {
	 opacity: 1;
	 transform: translateY(0);
   }
 }

 .modern-alert.alert-success {
   background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
   color: #155724;
   border-left: 4px solid #28a745;
 }

 .modern-alert.alert-danger {
   background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
   color: #721c24;
   border-left: 4px solid #dc3545;
 }

 /* Card-style sections */
 .form-card {
   background: #fff;
   border-radius: 8px;
   padding: 25px;
   box-shadow: 0 1px 3px rgba(0,0,0,0.05);
   margin-bottom: 20px;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
   .modern-tabs {
	 flex-direction: column;
   }

   .modern-tabs li {
	 width: 100%;
   }

   .modern-tabs li a {
	 border-bottom: 1px solid #e8e8e8;
	 border-left: 3px solid transparent;
   }

   .modern-tabs li.active a {
	 border-bottom: 1px solid #e8e8e8;
	 border-left: 3px solid #a80f4f;
   }
 }

 /* Hide all the text and buttons, keep only drag-drop area */
 .uppy-DashboardTab {
   display: none !important;
 }

 .uppy-Dashboard-browse {
   display: none !important;
 }

 .uppy-Dashboard-AddFiles-title {
   display: none !important;
 }

 .uppy-Dashboard-AddFiles-info {
   display: none !important;
 }

 .uppy-Dashboard-note {
   display: none !important;
 }

 /* Add custom text via CSS */
 .uppy-Dashboard-AddFiles::before {
   content: 'Dateien hier ablegen';
   display: block;
   text-align: center;
   font-size: 16px;
   color: #666;
   padding: 40px;
 }

 /* Add icon via CSS */
 .uppy-Dashboard-AddFiles::after {
   content: '\f093';  /* Font Awesome upload icon */
   font-family: 'FontAwesome';
   display: block;
   text-align: center;
   font-size: 48px;
   color: #007bff;
   margin-top: -30px;
 }

