html {
  overflow-y: scroll;
}

nav .font-headline-md {
  font-weight: 700 !important;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px -4px rgba(160, 65, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 65, 0, 0.3);
  box-shadow: 0 16px 40px -8px rgba(160, 65, 0, 0.15), 0 8px 20px -4px rgba(0, 0, 0, 0.08);
}

.orange-glow {
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.pulse-live {
  position: relative;
}

.pulse-live::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: #ff6b00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* PC Dropdown */
.pc-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 191, 176, 0.4);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px -4px rgba(160, 65, 0, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 60;
}

.pc-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pc-dropdown-header {
  padding: 12px 16px 10px;
  font-size: 16px;
  font-weight: 700;
  color: #a04100;
  border-bottom: 1px solid rgba(226, 191, 176, 0.4);
  font-family: 'Outfit', sans-serif;
}

.pc-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #191c1d;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.pc-dropdown-item:hover {
  background: #edeeef;
  color: #a04100;
}

.pc-dropdown-item .material-symbols-outlined {
  color: #a04100;
}

/* PC에서만 드롭다운 표시 */
@media (min-width: 768px) {
  .pc-dropdown {
    display: block;
  }
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(160, 65, 0, 0.25);
  border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 65, 0, 0.45);
}

#tab-attendance .glass-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px -4px rgba(160, 65, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
}
