/* public/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  --primary-color: #f2ca50;
  --bg-color: #131313;
  --surface-color: #1f2020;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #131313;
}

h1, h2, h3, h4, h5, h6, .font-headline {
  font-family: 'Montserrat', sans-serif;
}

.carbon-texture {
  background-color: #1a1a1a;
  background-image: radial-gradient(#2c2c2c 0.5px, transparent 0.5px);
  background-size: 8px 8px;
}

.metallic-glow {
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-gold-gradient {
  background: linear-gradient(45deg, #D4AF37, #FFD700);
  transition: all 0.3s ease;
}

.btn-gold-gradient:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.table-row-hover {
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.table-row-hover:hover {
  background-color: rgba(53, 53, 53, 0.5);
  border-left-color: #f2ca50;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Pulse Animation for Status indicators */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.pulse-dot.green {
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.pulse-dot.green::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #22c55e;
  opacity: 0.8;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
