/* Zwart/wit/grijs styling voor quizpartners dashboard */
body {
  background: #fff;
  color: #222;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.bg-dark { background: #222 !important; color: #fff !important; }
.text-muted { color: #888 !important; }
.border { border: 1px solid #ccc; }

/* Team member styling */
.team-member {
  padding: 8px 12px;
  margin: 4px 0;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  cursor: move;
  transition: all 0.2s ease;
}

.team-member:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.team-member.captain {
  background: linear-gradient(135deg, #673AB6 0%, #8E24AA 100%);
  color: white;
  border-color: #673AB6;
  font-weight: 600;
}

.team-member.captain:hover {
  background: linear-gradient(135deg, #5E35B1 0%, #7B1FA2 100%);
  border-color: #5E35B1;
}

.team-member .captain-indicator {
  color: #FFD700;
  font-size: 16px;
  margin-right: 8px;
}

.team-member .member-name {
  flex: 1;
}

.team-member .drag-handle {
  color: #6c757d;
  cursor: move;
  margin-right: 8px;
}

.team-member .remove-btn {
  color: #dc3545;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.team-member .remove-btn:hover {
  background: rgba(220, 53, 69, 0.1);
}

/* Sortable placeholder */
.sortable-ghost {
  opacity: 0.4;
}

.sortable-chosen {
  opacity: 0.8;
  cursor: grabbing !important;
  transform: rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Validation styling */
.validation-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
}

.validation-success {
  color: #28a745;
  font-size: 14px;
  margin-top: 8px;
}

/* Login page styling */
.login-header {
  background: linear-gradient(135deg, #222 0%, #333 100%);
  border-bottom: 3px solid #673AB6;
}

.login-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form .uk-input,
.login-form .uk-select {
  border-radius: 6px;
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.login-form .uk-input:focus,
.login-form .uk-select:focus {
  border-color: #673AB6;
  box-shadow: 0 0 0 2px rgba(103, 58, 182, 0.1);
}

.login-form .uk-button-primary {
  background: linear-gradient(135deg, #673AB6 0%, #8E24AA 100%);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.login-form .uk-button-primary:hover {
  background: linear-gradient(135deg, #5E35B1 0%, #7B1FA2 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(103, 58, 182, 0.3);
}

.uk-tab > li > a {
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.uk-tab > li.uk-active > a,
.uk-tab > li > a:hover {
  color: #673AB6;
  border-color: #673AB6;
}

/* Logo styling */
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #673AB6 0%, #8E24AA 100%);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(103, 58, 182, 0.3);
  flex-shrink: 0;
}

.logo-text {
  font-weight: 600;
  color: white !important;
  font-size: 18px;
  margin: 0;
}

/* Override UIKit navbar logo styling */
.uk-navbar-container .uk-logo {
  color: white !important;
}

.uk-navbar-container .uk-logo .logo-text {
  color: white !important;
}

.uk-navbar-container .uk-logo a {
  color: white !important;
  text-decoration: none;
}

.uk-navbar-container .uk-logo a:hover {
  color: white !important;
}

/* Status badge styling */
.status-badge-clickable {
  transition: opacity 0.2s ease;
}

.status-badge-clickable:hover {
  opacity: 0.8;
}

.status-badge-disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

/* Intro section styling */
.intro-content {
  max-width: 600px;
  margin: 0 auto;
}

.intro-content h3 {
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
}

.intro-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

/* Centered navigation styling */
.uk-navbar-center {
  flex: 1;
  justify-content: center;
}

.uk-navbar-center .uk-navbar-nav {
  display: flex;
  justify-content: center;
}

/* Active navbar item styling */
.uk-navbar-nav > li.uk-active > a {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Subtle logout button styling */
.uk-navbar-right .uk-button-text {
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.uk-navbar-right .uk-button-text:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

/* Navigation padding from page edges */
.uk-navbar-container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Status Dropdown Popup Styling */
.status-dropdown-popup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid #e9ecef;
  overflow: hidden;
  min-width: 280px;
  max-width: 320px;
}

.status-dropdown-header {
  background: linear-gradient(135deg, #673AB6 0%, #8E24AA 100%);
  padding: 16px 20px;
  color: white;
}

.status-dropdown-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.status-dropdown-content {
  padding: 8px 0;
}

.status-option {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}

.status-option:last-child {
  border-bottom: none;
}

.status-option:hover {
  background: #f8f9fa;
  transform: translateX(2px);
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
  color: white;
}

.status-text {
  flex: 1;
}

.status-label {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 2px;
}

.status-desc {
  font-size: 12px;
  color: #666;
}
