@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[v-cloak] {
  display: none;
}

.card-header {
  font-weight: 700;
}

.carbonads {
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  overflow: hidden;
  padding: 1rem;
}

.carbon-wrap {
  overflow: hidden;
}

.carbon-img {
  clear: left;
  display: block;
  float: left;
}

.carbon-text,
.carbon-poweredby {
  display: block;
  margin-left: 140px;
}

.carbon-text,
.carbon-text:hover,
.carbon-text:focus {
  color: #fff;
  text-decoration: none;
}

.carbon-poweredby,
.carbon-poweredby:hover,
.carbon-poweredby:focus {
  color: #ddd;
  text-decoration: none;
}

@media (min-width: 768px) {
  .carbonads {
    float: right;
    margin-bottom: -1rem;
    margin-top: -1rem;
    max-width: 360px;
  }
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #e5254d;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: #000000;
}

@media (prefers-color-scheme: dark) {
  .navbar {
    background: #121212 !important;
  }
  
  .border-bottom {
    border-color: #2e2e2e !important;
  }
  
  body {
    background: #121212 !important;
  }
  
  .card {
    background: #1e1e1e !important;
    border: 1px solid #2e2e2e !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #ffffff !important;
  }
  
  .text-muted {
    color: #e1e1e1 !important;
  }
  
  .card-header {
    background: #1e1e1e !important;
    color: #ffffff !important;
    border-radius: 12px 12px 0 0 !important;
    border-bottom: 1px solid #2e2e2e !important;
  }
  
  .drop-zone {
    border: 1px solid #2e2e2e !important;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 15px;
  }
  
  .drop-zone:hover {
    border-color: var(--primary-color);
    background: #fff5f6;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
  }
  
  .form-control,
  .form-select {
    background-color: #1e1e1e !important;
    border-color: #2e2e2e !important;
    color: #fff !important;
  }
  
  .form-control::placeholder {
    color: #aaa;
    opacity: 1;
  }
  
  
  .stat-label {
    font-size: 0.85rem;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e1e1e1 !important;
  }
  
  hr.w-100 {
  color: #e1e1e1 !important;
}
}

/* Base reset */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

/* Track (line) */
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  /* thickness */
  background: #2e2e2e;
  border-radius: 10px;
}

input[type="range"]::-moz-range-track {
  height: 6px;
  background: #2e2e2e;
  border-radius: 10px;
}

/* Thumb (circle) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  margin-top: -6px;
  /* align with track */
  transition: 0.2s;
}

input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: none;
}

/* Hover effect */
input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.1);
}

input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.1);
}