/* ============================================
   Global Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Navigation Styles
   ============================================ */

.nav-link {
  transition: all 0.2s;
}

.nav-link:hover {
  background-color: rgba(55, 65, 81, 0.5);
}

.nav-link.active {
  background-color: rgba(55, 65, 81, 1);
  font-weight: 600;
}

/* ============================================
   Master Tab Styles
   ============================================ */

.master-tab-btn {
  border-bottom-color: transparent;
  color: rgb(107, 114, 128);
  transition: all 0.2s;
}

.master-tab-btn:hover {
  color: rgb(55, 65, 81);
  border-bottom-color: rgb(209, 213, 219);
}

.master-tab-btn.active {
  color: rgb(37, 99, 235);
  border-bottom-color: rgb(37, 99, 235);
  font-weight: 600;
}

/* ============================================
   Table Styles
   ============================================ */

table {
  border-collapse: collapse;
}

th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background-color: rgba(249, 250, 251, 1);
}

/* ============================================
   Animation
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-content {
  animation: fadeIn 0.3s ease-in-out;
}

/* ============================================
   Utility Classes
   ============================================ */

.hidden {
  display: none !important;
}
