/* ==================================
   ACCOUNT PAGE COMPONENTS
   ================================== */

/* Custom styling pro nav-tabs v souladu s unipa2022 */
#myAccountTabs {
  border-bottom: 2px solid #f8f9fa;
  margin-bottom: 20px;
}

#myAccountTabs .nav-link {
  color: #6c757d;
  background-color: transparent;
  border: none;
  padding: 12px 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  border-radius: 8px 8px 0 0;
  margin-right: 5px;
  transition: all 0.3s ease;
}

#myAccountTabs .nav-link:hover {
  color: #da4a1f;
  background-color: #fff5f3;
  border: none;
}

#myAccountTabs .nav-link.active {
  color: white;
  background-color: #ff602e;
  border: none;
  font-weight: 600;
}

#myAccountTabs .nav-link i {
  font-size: 1.1em;
}

.tab-content {
  background: white;
  border-radius: 0 8px 8px 8px;
  min-height: 400px;
}

.tab-pane {
  padding: 0;
}

/* Styling pro členskou sekci */
.clenska-sekce-wrapper {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px;
  margin-top: 0;
}

.clenska-sekce-wrapper h3 {
  color: #ff602e;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.clenska-sekce-menu .nav-pills .nav-link {
  color: #495057;
  background: transparent;
  border: 1px solid #dee2e6;
  margin-bottom: 8px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.clenska-sekce-menu .nav-pills .nav-link:hover {
  background: #fff;
  color: #ff602e;
  border-color: #ff602e;
  transform: translateX(5px);
}

.clenska-sekce-menu .nav-pills .nav-link i {
  color: #ff602e;
  transition: transform 0.3s ease;
}

.clenska-sekce-menu .nav-pills .nav-link:hover i {
  transform: translateX(3px);
}

/* Redirect notification styling */
.redirect-notification {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  color: #856404;
}

.redirect-notification .alert-heading {
  color: #ff602e;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Membership status card */
.membership-status-card {
  background: linear-gradient(135deg, #ff602e 0%, #da4a1f 100%);
  color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 96, 46, 0.2);
}

.membership-status-card h4 {
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.membership-status-card .membership-level {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 5px;
}

.membership-status-card .membership-details {
  opacity: 0.9;
  font-size: 0.9em;
}

/* Webinar cards styling */
.user-webinars .card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.user-webinars .card:hover {
  border-color: #ff602e;
  box-shadow: 0 4px 12px rgba(255, 96, 46, 0.1);
}

.user-webinars .btn-primary {
  background-color: #ff602e;
  border-color: #ff602e;
}

.user-webinars .btn-primary:hover {
  background-color: #da4a1f;
  border-color: #da4a1f;
}

.user-webinars .btn-outline-primary {
  color: #ff602e;
  border-color: #ff602e;
}

.user-webinars .btn-outline-primary:hover {
  background-color: #ff602e;
  border-color: #ff602e;
  color: white;
}

/* ==================================
   MEMBERSHIP BADGES
   ================================== */

.wpmc-membership-badge {
    display: inline-block;
    margin-bottom: 10px;
}

.wpmc-membership-badge .badge {
    font-size: 0.8em;
    margin-right: 5px;
    background-color: #007cba;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    text-decoration: none;
}

.wpmc-membership-badge .badge.limited {
    background-color: #F19C27; /* oranžová pro základní */
    color: white;
}

.wpmc-membership-badge .badge.full {
    background-color: #FF602E; /* tmavší oranžová pro rozšířené */
    color: white;
}

.wpmc-membership-badge .badge.student {
    background-color: #17a2b8; /* modrá pro studentské */
}

.wpmc-membership-badge .badge.honorary {
    background-color: #6f42c1; /* fialová pro čestné */
}

.wpmc-membership-badge .badge i {
    margin-right: 4px;
}

/* ==================================
   ACCOUNT PAGE: Redirect notice & long URLs wrap
   ================================== */
.redirect-notification {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
}
.redirect-notification code {
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}