/* Custom styles for the TIE app */
body {
  -webkit-tap-highlight-color: transparent;
}

/* iPhone mockup styling */
@media (min-width: 768px) {
  .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .w-1\/2 {
    position: relative;
  }
  
  .w-1\/2:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1rem;
    height: 100%;
    width: 1px;
    background-color: #e5e7eb;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Smooth transitions */
button, .transition-all {
  transition: all 0.2s ease;
}

button:active {
  transform: scale(0.98);
}
/* Custom focus styles */
button:focus, input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Bottom sheet animation */
#qr-sheet > div, #control-sheet > div {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* FAB hover effect */
#qr-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#qr-fab:active {
  transform: scale(0.95);
}
