* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f1f5f9;
  font-size: 14px;
  overflow: hidden;
}

/* custom smooth transitions */
.page-transition {
  transition: opacity 0.2s ease-in-out;
}

.sidebar-item-active {
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border-left: 3px solid #2563eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5b6e8c;
}

.btn-press:active {
  transform: scale(0.97);
}

.card-hover {
  transition: all 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.08);
}

.compact-text {
  font-size: 0.85rem;
}

/* Loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Add to existing styles.css */
@media (max-width: 640px) {
  .content-scrollable {
    padding: 0.75rem;
  }
  
  .main-layout aside {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .xs\:inline {
    display: inline;
  }
  
  .xs\:hidden {
    display: none;
  }
  
  .flex-col.xs\:flex-row {
    flex-direction: column;
  }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  button, 
  .copy-path-btn,
  .company-select-btn {
    min-height: 40px;
  }
  
  .toast-notification {
    font-size: 12px;
  }
}