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

html {
  background-color: #121212;
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121212 !important;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Global Header */
.global-header {
  background-color: #1f1f1f;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.global-header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.header-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-nav a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.header-nav a:hover {
  background-color: rgba(0, 188, 212, 0.1);
}

/* Landing Page */
.hero {
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.cta-buttons {
  margin-top: 2rem;
}

.cta-buttons a {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #00bcd4;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s;
}

.cta-buttons a:hover {
  background-color: #0097a7;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.features div {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
}

footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #777;
  border-top: 1px solid #333;
}

/* Authentication */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.auth-form {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.auth-form h2 {
  margin-bottom: 1rem;
}

.auth-form label {
  display: block;
  margin-top: 1rem;
}

.auth-form input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  background: #2c2c2c;
  color: white;
  margin-top: 0.5rem;
}

.auth-form .btn {
  margin-top: 1.5rem;
  padding: 0.75rem;
  width: 100%;
  background-color: #00bcd4;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-form .btn:hover {
  background-color: #0097a7;
}

.auth-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.auth-links {
  text-align: center;
  margin: 1rem 0;
}

.forgot-password-link {
  color: #00bcd4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #4dd0e1;
  text-decoration: underline;
}

#login-error {
  background-color: #ff4c4c;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.alert-box {
  background-color: #ffdddd;
  color: #a94442;
  padding: 10px 15px;
  margin-top: 1rem;
  border-left: 5px solid #f44336;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-weight: 600;
  animation: fadeIn 0.3s ease-in-out;
}

.alert-box.success,
#login-error.success {
  background-color: #d4edda !important;
  color: #155724 !important;
  border-left-color: #28a745 !important;
}

/* Enhanced Sign-up Form Styles */
.enhanced-signup {
  max-width: 480px;
  padding: 2.5rem;
}

/* Enhanced Login Form Styles */
.enhanced-login {
  max-width: 420px;
  padding: 2.5rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-subtitle {
  color: #00bcd4;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.label-text {
  font-size: 0.9rem;
  color: #fff;
}

.required {
  color: #ff4444;
  font-weight: bold;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  border: 2px solid #444;
  border-radius: 8px;
  background: #2c2c2c;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.enhanced-signup .input-wrapper input[type="password"],
.enhanced-login .input-wrapper input[type="password"] {
  padding-right: 2.5rem;
}

.enhanced-login .input-wrapper input[type="email"],
.enhanced-signup .input-wrapper input[type="email"],
.enhanced-signup .input-wrapper input[type="tel"],
.enhanced-signup .input-wrapper input[type="text"] {
  padding-right: 0.75rem;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.input-wrapper input:valid {
  border-color: #28a745;
}

.input-wrapper input.error {
  border-color: #ff4444;
}

.input-icon {
  position: absolute;
  right: 0.75rem;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 1;
}

.password-toggle {
  position: absolute;
  right: 0.5rem;
  background: none;
  border: none;
  color: #00bcd4;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 500;
}

.password-toggle:hover {
  color: #fff;
  background-color: rgba(0, 188, 212, 0.1);
}

.field-validation {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.2rem;
}

.field-validation.error {
  color: #ff4444;
}

.field-validation.success {
  color: #28a745;
}

.field-help {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 0.75rem;
}

.strength-bar {
  width: 100%;
  height: 6px;
  background-color: #444;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.strength-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
}

/* Password Requirements */
.password-requirements {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.requirement {
  font-size: 0.8rem;
  color: #ff4444;
  transition: color 0.3s ease;
}

.requirement.met {
  color: #28a745;
}

/* Checkbox Styles */
.checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  cursor: pointer;
  margin-bottom: 0 !important;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #444;
  border-radius: 4px;
  background: #2c2c2c;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #00bcd4;
  border-color: #00bcd4;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.checkbox-text a {
  color: #00bcd4;
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Enhanced Button Styles */
.enhanced-btn {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.enhanced-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.btn-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
}

.security-note {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 480px) {
  .enhanced-signup {
    padding: 1.5rem;
    margin: 1rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .input-wrapper input {
    padding: 0.65rem 2.5rem 0.65rem 0.65rem;
    font-size: 0.95rem;
  }

  .input-icon {
    right: 0.65rem;
    font-size: 1.1rem;
  }

  .password-toggle {
    right: 0.4rem;
  }
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* App Layout */
.app-main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.controls input,
.controls select {
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  background: #1e1e1e;
  color: white;
}

.controls button {
  padding: 0.5rem 1rem;
  background-color: #00bcd4;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background-color: #0097a7;
}

/* Boards */
.boards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.equipment-board,
.crew-board {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
}

.dropzone {
  min-height: 120px;
  padding: 10px;
  margin: 10px 0;
  background-color: #191919;
  border: 2px dashed #444;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s;
}

.drag-active {
  background-color: #2a2a2a !important;
}

/* Equipment Item */
.equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #2c2c2c;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: grab;
  user-select: none;
  transition: transform 0.2s ease;
}

.equipment-item:hover {
  transform: scale(1.03);
}

.equipment-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Crew Header */
.crew-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.crew-title {
  font-size: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  width: 100%;
}

.crew-title:focus {
  outline: none;
  background: #2a2a2a;
  padding: 2px 4px;
  border-radius: 4px;
}

.remove-crew {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
  margin-left: 10px;
}

.remove-crew:hover {
  color: red;
}

/* Delete Zone */
.delete-zone {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4c4c;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 1000;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.95;
  pointer-events: auto;
}

.delete-zone.hidden {
  display: none;
}

/* Enhanced Activity Log Styles */
.activity-log-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  z-index: 1000;
}

.log-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.log-toggle-btn, .log-export-btn {
  padding: 8px 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.log-toggle-btn:hover, .log-export-btn:hover {
  background: #0056b3;
}

.upgrade-btn {
  background: #ffc107 !important;
  color: #000 !important;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.upgrade-btn:hover {
  background: #e0a800 !important;
  transform: scale(1.05);
}

.upgrade-btn::before {
  content: '🚀';
  margin-right: 5px;
}

.activity-log {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  max-height: 500px;
  overflow-y: auto;
}

.activity-log h3 {
  margin: 0;
  padding: 15px;
  background: #2a2a2a;
  border-bottom: 1px solid #333;
  font-size: 16px;
  color: #fff;
}

/* Enhanced Log Filters */
.log-filters {
  background: #2a2a2a;
  padding: 15px;
  border-bottom: 1px solid #333;
}

.filter-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

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

.filter-group label {
  font-size: 12px;
  font-weight: bold;
  color: #ccc;
  margin: 0;
}

.filter-input-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.date-range-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-range-group span {
  color: #ccc;
  font-size: 12px;
}

.filter-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.filter-row select,
.filter-row input[type="date"],
.filter-row input[type="text"] {
  padding: 6px 10px;
  border: 1px solid #555;
  border-radius: 4px;
  font-size: 12px;
  min-width: 100px;
  background: #333;
  color: #fff;
}

.filter-row input[type="text"] {
  min-width: 140px;
}

.filter-row input[type="text"]::placeholder {
  color: #999;
}

.btn-clear-single {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-clear-single:hover {
  background: #c82333;
}

.filter-status {
  font-size: 11px;
  color: #999;
  font-style: italic;
}

.filter-status.active {
  color: #28a745;
  font-weight: bold;
}

.filter-row label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  white-space: nowrap;
  color: #ccc;
}

.btn-filter, .btn-clear {
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.btn-filter {
  background: #28a745;
  color: white;
}

.btn-filter:hover {
  background: #218838;
}

.btn-clear {
  background: #6c757d;
  color: white;
}

.btn-clear:hover {
  background: #5a6268;
}

.pagination-info {
  margin: 10px 0;
  padding: 10px;
  background: #2a2a2a;
  border-radius: 4px;
  color: #ccc;
  font-size: 14px;
}

.pagination-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.pagination-info-text {
  color: #ccc;
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-controls label {
  color: #ccc;
  font-size: 14px;
}

.page-select {
  background: #333;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 14px;
}

.page-select:focus {
  outline: none;
  border-color: #007bff;
}

.total-pages {
  color: #ccc;
  font-size: 14px;
}

.pagination-buttons {
  display: flex;
  gap: 5px;
}

.btn-page {
  background: #007bff;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s;
}

.btn-page:hover:not(:disabled) {
  background: #0056b3;
}

.btn-page:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Enhanced Log Items */
.activity-log ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-log-item {
  padding: 12px 15px;
  border-bottom: 1px solid #333;
  font-size: 13px;
}

.activity-log-item:last-child {
  border-bottom: none;
}

.log-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.log-time {
  color: #999;
  font-size: 12px;
  font-family: monospace;
}

.log-message {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.log-meta {
  color: #777;
  font-size: 11px;
  margin-top: 4px;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  color: white;
}

.badge.primary {
  background-color: #007bff;
}

.badge.secondary {
  background-color: #6c757d;
}

.badge.success {
  background-color: #28a745;
}

.badge.danger {
  background-color: #dc3545;
}

.badge.warning {
  background-color: #ffc107;
  color: #212529;
}

.badge.info {
  background-color: #17a2b8;
}

.badge.archived {
  background-color: #495057;
  color: #adb5bd;
}

/* Legacy Log Section (for backward compatibility) */
.log-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

#logContainer {
  max-height: 250px;
  overflow-y: auto;
  padding: 1rem;
  background-color: #1b1b1b;
  border: 1px solid #333;
  border-radius: 8px;
  margin-top: 1rem;
}

#logContainer ul {
  list-style: none;
}

#logContainer li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  /* Force consistent background on mobile */
  html, body {
    background-color: #121212 !important;
    background: #121212 !important;
  }

  /* Prevent mobile browser address bar color issues */
  body {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  .boards {
    flex-direction: column;
  }

  .controls {
    flex-direction: column;
  }

  .equipment-board,
  .crew-board {
    width: 100%;
  }
}

/* Enhanced Notification System */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.notification {
  padding: 16px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease-out;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.dismissing {
  transform: translateX(100%);
  opacity: 0;
}

.notification-success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-left: 4px solid #2e7d32;
}

.notification-error {
  background: linear-gradient(135deg, #f44336, #e53935);
  border-left: 4px solid #c62828;
}

.notification-warning {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-left: 4px solid #ef6c00;
}

.notification-info {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border-left: 4px solid #1565c0;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.notification-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.notification-message {
  flex: 1;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Legacy notification support */
.notification.success {
  background: linear-gradient(135deg, #4caf50, #45a049) !important;
  border-left: 4px solid #2e7d32 !important;
}

.notification.error {
  background: linear-gradient(135deg, #f44336, #e53935) !important;
  border-left: 4px solid #c62828 !important;
}

.fade-out {
  animation: fadeOut 0.5s ease-in forwards;
}

@keyframes slideIn {
  from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Mobile drag and drop styles */
.equipment-item.dragging {
  opacity: 0.8;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropzone.drag-active {
  background-color: rgba(0, 188, 212, 0.1);
  border: 2px dashed #00bcd4;
}

.delete-zone.delete-hover {
  background-color: #ff6b6b;
  transform: scale(1.1);
}

/* Add this to prevent scrolling while dragging on mobile */
body.touch-dragging {
  overflow: hidden;
  touch-action: none;
}

/* Make equipment items more touch-friendly */
.equipment-item {
  min-height: 60px;
  min-width: 120px;
  touch-action: none;
}

/* Responsive improvements for mobile */
@media (max-width: 768px) {
  .equipment-item {
    padding: 12px;
    margin-bottom: 10px;
  }
  
  .dropzone {
    min-height: 150px;
    margin-bottom: 20px;
  }
  
  .delete-zone {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}
