body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1020px) {
  .container {
    max-width: 1020px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

.user-icon {
  font-size: 32px;
}

.testata-menu {
  font-size: 0.8rem;
}

.testata-menu a {
  transition: all 0.2s ease;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.testata-menu a:hover {
  color: #333 !important;
  text-decoration: underline;
  transform: translateY(-1px);
}

/* USER DROPDOWN */
button.user-icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

button.user-icon.dropdown-toggle::after {
  display: none;
}

.user-dropdown-menu {
  min-width: 180px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0;
  margin-top: 0.5rem !important;
}

.user-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  padding: 0.55rem 1.1rem;
  border-radius: 0;
}

.user-dropdown-menu .dropdown-item i {
  width: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #bbb;
  flex-shrink: 0;
}

.user-dropdown-menu .dropdown-item:hover {
  background: #f8f8f8;
  color: #000;
}

.user-dropdown-menu .dropdown-item:hover i {
  color: #555;
}

.user-dropdown-menu .dropdown-divider {
  margin: 0.3rem 0;
  border-color: #f0f0f0;
}

.user-dropdown-menu .dropdown-item--danger {
  color: #c00;
}

.user-dropdown-menu .dropdown-item--danger i {
  color: #c00;
}

.user-dropdown-menu .dropdown-item--danger:hover {
  background: #fff5f5;
  color: #a00;
}

/* ========================================
   BOTTONI COMUNI
   ======================================== */
.btn-dark {
  color: #fff;
  background-color: #333;
  font-size: 0.875rem;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.btn-dark:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-outline-dark {
  color: #333;
  background-color: transparent;
  border: 1px solid #333;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 18px;
  text-align: center;
}

.bg-yellow {
  background-color: #ffdd00;
}

/* MAIN MENU */
.main-menu a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.main-menu a.active {
  border-color: #ffdd00;
}

.main-menu .dropdown {
  display: flex;
  align-items: center;
}

header.border-bottom {
  border-color: #e0e0e0 !important;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* SPEAKERS SECTION */
.ev-speakers {
  margin-top: 2rem;
}
.ev-speakers-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.ev-speakers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

/* USER AUTHOR */
.detail-meta-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.detail-meta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffdd00;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.detail-meta-avatar--moderator {
  border-color: #ccc;
  color: #666;
}

.detail-meta-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.detail-meta-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
