/* Profile Styles */
.profile-page {
  width: 100%;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  background: #eee;
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name {
  margin: 0 0 8px;
  font-size: 24px;
}

.profile-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-weight: bold;
  font-size: 16px;
}

.stat-label {
  color: #666;
  font-size: 14px;
}

.profile-bio {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.5;
}

.profile-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-edit,
.btn-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

/* Main Tabs */
.general-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 16px;
}

.tab {
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab.active {
  color: #000;
  border-bottom-color: #000;
}

/* Sub Tabs */
.sub-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.sub-tab {
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.sub-tab.active {
  color: #000;
  border-bottom-color: #000;
}

/* Tab Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.sub-tab-panel {
  display: none;
}

.sub-tab-panel.active {
  display: block;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .profile-header {
    gap: 16px;
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
  }

  .profile-name {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .profile-stats {
    gap: 12px;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 14px;
  }

  .stat-label {
    font-size: 12px;
  }

  .profile-bio {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .profile-actions {
    gap: 6px;
  }

  .btn-edit,
  .btn-link {
    padding: 6px 10px;
    font-size: 13px;
    flex: 1;
    text-align: center;
  }

  .tab {
    padding: 10px 12px;
    font-size: 15px;
  }

  .general-tabs {
    gap: 4px;
  }

  .sub-tab {
    padding: 8px 10px;
    font-size: 13px;
  }
}
