/* src/styles.scss */
:root {
  --teal: #00B5A5;
  --teal-dark: #009688;
  --teal-light: #E6F7F5;
  --pink: #E91E8C;
  --pink-light: #FDF2F8;
  --charcoal: #3D4852;
  --charcoal-light: #636B74;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --white: #FFFFFF;
  --emerald: #10B981;
  --amber: #F59E0B;
  --orange: #F97316;
  --red: #EF4444;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --bg-primary: #F3F4F6;
  --bg-card: #FFFFFF;
  --bg-hover: #F9FAFB;
  --text-primary: #3D4852;
  --text-secondary: #6B7280;
  --border-color: #E5E7EB;
}
[data-theme=dark] {
  --bg-primary: #111827;
  --bg-card: #1F2937;
  --bg-hover: #374151;
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --border-color: #374151;
  --gray-50: #1F2937;
  --gray-100: #374151;
  --gray-200: #4B5563;
  --gray-300: #6B7280;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --white: #1F2937;
  --charcoal: #F9FAFB;
  --charcoal-light: #D1D5DB;
  --teal-light: rgba(0, 181, 165, 0.2);
  --pink-light: rgba(233, 30, 140, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  transition: background 0.3s, color 0.3s;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes overlayFadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
.animate-fade-in {
  animation: fadeIn 0.4s ease-out both;
}
.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out both;
}
.animate-stagger-1 {
  animation-delay: 0.05s;
}
.animate-stagger-2 {
  animation-delay: 0.1s;
}
.animate-stagger-3 {
  animation-delay: 0.15s;
}
.animate-stagger-4 {
  animation-delay: 0.2s;
}
.animate-stagger-5 {
  animation-delay: 0.25s;
}
.animate-stagger-6 {
  animation-delay: 0.3s;
}
.vehicle-timer.urgent {
  background: rgba(239, 68, 68, 0.9) !important;
  animation: pulse 1s infinite;
}
.vehicle-timer.warning {
  background: rgba(245, 158, 11, 0.9) !important;
}
.my-bid-amount.winning {
  color: var(--emerald);
}
.my-bid-amount.losing {
  color: var(--amber);
}
.vt-mybid.winning {
  color: var(--emerald);
}
.vt-mybid.losing {
  color: var(--amber);
}
.status-badge.winning {
  background: #ECFDF5;
  color: #065F46;
}
.status-badge.losing {
  background: #FEF3C7;
  color: #92400E;
}
.my-bid-status.winning {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}
.my-bid-status.losing {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}
.my-bid-status.winning .my-bid-status-text {
  color: #065F46;
}
.my-bid-status.losing .my-bid-status-text {
  color: #92400E;
}
.my-bid-status.winning .my-bid-status-badge {
  background: var(--emerald);
}
.my-bid-status.losing .my-bid-status-badge {
  background: var(--amber);
}
.condition-badge.uitstekend {
  background: var(--emerald);
}
.condition-badge.goed {
  background: var(--teal);
}
.condition-badge.redelijk {
  background: var(--amber);
}
.condition-badge.matig {
  background: var(--orange);
}
.notification-icon.outbid {
  background: #FEF3C7;
  color: #92400E;
}
.notification-icon.won {
  background: #ECFDF5;
  color: #065F46;
}
.notification-icon.new {
  background: #DBEAFE;
  color: #2563EB;
}
.notification-icon.ending {
  background: var(--pink-light);
  color: var(--pink);
}
.activity-icon.bid {
  background: var(--teal-light);
  color: var(--teal);
}
.activity-icon.outbid {
  background: #FEF3C7;
  color: #92400E;
}
.activity-icon.watch {
  background: var(--pink-light);
  color: var(--pink);
}
.activity-icon.new {
  background: #DBEAFE;
  color: #2563EB;
}
.badge.import {
  background: rgba(252, 211, 77, 0.9);
  color: #92400E;
}
.badge.damage {
  background: rgba(239, 68, 68, 0.9);
  color: var(--white);
}
.badge.ev {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
}
.delivery-badge.pending {
  background: #FEF3C7;
  color: #92400E;
}
.delivery-badge.delivered {
  background: #ECFDF5;
  color: #065F46;
}
.damage-section.has-damage {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.damage-section.no-damage {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}
.damage-title.has-damage {
  color: #991B1B;
}
.damage-title.no-damage {
  color: #065F46;
}
.bid-history-item.mine {
  background: var(--teal-light);
  border: 1px solid rgba(0, 181, 165, 0.3);
}
.bid-history-item.mine .bid-history-person {
  color: var(--teal);
}
.chart-bar.active {
  background: var(--teal) !important;
}
.status-pill.completed {
  background: #ECFDF5;
  color: #065F46;
}
.stat-icon.teal {
  background: var(--teal);
}
.stat-icon.pink {
  background: var(--pink);
}
.stat-icon.charcoal {
  background: var(--charcoal);
}
.dashboard-card-badge.teal {
  background: var(--teal-light);
  color: var(--teal);
}
.dashboard-card-badge.pink {
  background: var(--pink-light);
  color: var(--pink);
}
.dashboard-card-badge.amber {
  background: #FEF3C7;
  color: #92400E;
}
.welcome-card {
  position: relative;
}
.welcome-card::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
}
.welcome-card::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  bottom: -30%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
}
.market-banner {
  position: relative;
}
.market-banner::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(0, 181, 165, 0.2);
}
.skeleton {
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      var(--gray-200) 25%,
      var(--gray-100) 50%,
      var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.search-checkbox input {
  display: none;
}
.search-checkbox input:checked + .checkbox-custom {
  background: var(--teal);
  border-color: var(--teal);
}
.search-checkbox input:checked + .checkbox-custom::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.settings-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.settings-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  transition: all 0.3s;
  background-color: var(--gray-200);
  border-radius: 28px;
}
.toggle-slider:before {
  position: absolute;
  border-radius: 9999px;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.settings-toggle input:checked + .toggle-slider {
  background-color: var(--teal);
}
.settings-toggle input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.settings-toggle input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px var(--teal-light);
}
.search-select,
.settings-select,
.sort-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.hide-scrollbar::-webkit-scrollbar,
.filters::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar,
.filters {
  scrollbar-width: none;
}
.vehicle-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-divider::before,
.search-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
[data-theme=dark] .search-input,
[data-theme=dark] .search-select,
[data-theme=dark] .settings-input,
[data-theme=dark] .settings-select,
[data-theme=dark] .form-input,
[data-theme=dark] .form-textarea {
  background: var(--bg-primary);
  border-color: var(--border-color);
  color: var(--text-primary);
}
[data-theme=dark] .vehicle-image,
[data-theme=dark] .detail-image,
[data-theme=dark] .my-vehicle-image {
  background:
    linear-gradient(
      135deg,
      #374151,
      #4B5563) !important;
}
[data-theme=dark] .search-box input {
  background: var(--bg-primary);
  color: var(--text-primary);
}
[data-theme=dark] .sold-table th {
  background: var(--bg-primary);
}
[data-theme=dark] .sold-table td {
  border-color: var(--border-color);
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }
  .dashboard-card.full-width {
    grid-column: span 1;
  }
  .stats-overview {
    grid-template-columns: 1fr !important;
  }
  .sold-stats {
    grid-template-columns: 1fr !important;
  }
  .detail-content {
    grid-template-columns: 1fr !important;
  }
  .detail-sidebar {
    border-left: none !important;
    border-top: 1px solid var(--gray-200);
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .vehicle-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .vehicle-image {
    height: 180px !important;
  }
  .vehicle-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .vehicle-table {
    min-width: 700px;
  }
  .welcome-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .welcome-name {
    font-size: 20px !important;
  }
  .welcome-stats {
    gap: 16px !important;
    flex-wrap: wrap;
  }
  .welcome-stat-value {
    font-size: 22px !important;
  }
  .market-banner {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .market-stats {
    flex-wrap: wrap;
  }
  .market-stat {
    min-width: calc(50% - 6px);
  }
  .detail-modal {
    border-radius: 0 !important;
  }
  .spec-grid {
    grid-template-columns: 1fr !important;
  }
  .condition-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sold-table th,
  .sold-table td {
    padding: 12px !important;
    font-size: 13px !important;
  }
  .search-form-card {
    padding: 16px !important;
    border-radius: 16px !important;
  }
  .search-row {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .search-field,
  .search-field.half {
    min-width: 100% !important;
    flex: 1 !important;
  }
  .search-checkboxes {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .search-actions {
    flex-direction: column !important;
  }
  .search-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .settings-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .settings-control {
    margin-left: 0 !important;
    width: 100%;
  }
  .settings-input,
  .settings-input.wide,
  .settings-select {
    width: 100% !important;
  }
  .settings-actions {
    flex-direction: column !important;
  }
  .settings-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .stat-card {
    padding: 14px !important;
    gap: 10px !important;
  }
  .stat-icon {
    width: 42px !important;
    height: 42px !important;
  }
  .stat-value {
    font-size: 22px !important;
  }
  .stat-label {
    font-size: 12px !important;
  }
}
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .stat-card {
    flex-direction: column !important;
    text-align: center;
    padding: 12px !important;
  }
  .stat-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .stat-value {
    font-size: 20px !important;
  }
  .welcome-stats {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
