/* Bouts Page Styles - Matching Home Page */
.bouts-page {
  min-height: 100vh;
  background: #000;
  padding-top: 80px;
}

.page-header {
  padding: 40px 0;
  background: #000;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 15px;
}

.page-header p {
  color: #999;
  font-size: 18px;
}

.page-header .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Bout Tabs - Matching Home Page */
.bout-tabs {
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
}

.bout-tabs .nav-link {
  border: none;
  color: #999 !important;
  font-weight: 500;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background-color: transparent;
  margin-right: 1rem;
}

.bout-tabs .nav-link:hover {
  color: #fff !important;
  border-color: transparent;
}

.bout-tabs .nav-link.active {
  color: #fff !important;
  background-color: transparent;
  border-bottom-color: #667eea;
}

.tab-content {
  padding-top: 1rem;
}

/* Bout Card - Exactly matching home page */
.bout-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background-color: #2C2C2C;
  height: 100%;
  cursor: pointer;
}

.bout-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bout-card-img {
  height: 275px;
  overflow: hidden;
  position: relative;
}

.bout-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bout-card:hover .bout-card-img img {
  transform: scale(1.1);
}

.bout-status {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.bout-status.completed {
  background-color: #b6724c;
}

.bout-status.ongoing {
  background-color: #28a745;
}

.bout-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 111, 0, 0.6);
  color: white;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
}

.bout-card-info {
  padding: 1.5rem;
}

.bout-card-info h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

/* Host Info */
.host-info {
  display: flex;
  align-items: center;
  margin: 0.75rem 0;
}

.host-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.host-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #D1D1D1;
}

/* Bout Meta */
.bout-meta {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 0.5rem;
}

.bout-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #D1D1D1;
}

.bout-meta-item i {
  margin-right: 0.5rem;
  width: 18px;
  text-align: center;
  color: #667eea;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #999;
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
  color: #999;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.empty-state p {
  color: #999;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 3rem;
}

.loading-state .spinner-border {
  width: 3rem;
  height: 3rem;
  color: #667eea;
}

/* Dropdown menu styles */
.dropdown-menu {
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
}

.dropdown-item {
  color: #fff !important;
  background: transparent !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #667eea !important;
  color: #fff !important;
}

.dropdown-divider {
  border-color: #333 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .bout-card-img {
    height: 200px;
  }
  
  .bout-card-info h4 {
    font-size: 1.1rem;
  }
}
