body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding-top: 80px;
}

main {
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 100px;
}

/* Logo Text */
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #1a73e8 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none !important;
}

.logo-text:hover {
  text-decoration: none !important;
}

.nav-link {
  color: #5f6368 !important;
  font-size: 0.875rem;
  padding: 8px 12px !important;
  border-radius: 0;
  border: none;
  transition: background 0.2s;
}

.nav-link:hover {
  background-color: #f1f3f4;
}

.nav-link.active {
  color: #202124 !important;
  background-color: #f1f3f4 !important;
  border-radius: 0;
  border: none;
  font-weight: 500 !important;
}

/* Avatar Dropdown */
.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.avatar-circle:hover {
  background: #e8eaed;
}

/* Dropdown Header Refinement (Match Reference) */
.dropdown-header-teal {
  display: flex !important;
  align-items: center;
  padding: 20px !important;
  gap: 16px;
  background-color: #fff;
}

.avatar-teal {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background-color: #ee4723 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-weight: 500;
  font-size: 1.4rem;
  flex-shrink: 0;
  text-transform: upper;
}

.user-info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 2px;
}

.user-email {
  font-size: 0.9rem;
  color: #5f6368;
}

.dropdown-menu-custom {
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
  min-width: 280px;
  background-color: #fff !important;
}

.dropdown-item-custom {
  padding: 12px 20px !important;
  font-size: 0.95rem;
  color: #3c4043;
}

.dropdown-item-custom {
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
}

.dropdown-item-custom:hover {
  background-color: #f3f4f6;
}

.dropdown-item-custom.text-danger:hover {
  background-color: #fef2f2;
}

/* Global Border Radius Reset */
.btn,
.card,
.form-control,
.form-select,
.badge,
.dropdown-menu,
.modal-content,
.alert,
.toast {
  border-radius: 0 !important;
}

/* Toast Styling */
.toast {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none !important;
}

/* Modal Styling */
.modal-backdrop.show {
  opacity: 0.6;
}