@charset "UTF-8";
.test {
  color: blue;
}
.profile-header {
  background-color: var(--primary-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.profile-cover {
  height: 220px;
  background: linear-gradient(to right, var(--ast-global-color-0) , var(--ast-global-color-0));
  position: relative;
}
.profile-picture-container {
  position: absolute;
  left: 50px;
  z-index: 99;
}
.profile-picture {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid var(--primary-bg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.status-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #25D366;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--primary-bg);
}
.profile-basics {
  padding-left: 250px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 2rem;
}
.profile-section {
  background-color: var(--primary-bg);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.profile-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--subtle-color);
  color: var(--heading-color);
}
.profile-nav {
  background-color: var(--primary-bg);
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.profile-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 15px 20px;
  transition: all 0.2s ease;
}
.profile-nav .nav-link.active {
  color: var(--cta-color);
  background-color: transparent;
  border-bottom: 3px solid var(--cta-color);
}
.profile-nav .nav-link:hover {
  background-color: var(--subtle-color);
}
.profile-tag {
  display: inline-block;
  background-color: var(--tag-bg);
  color: var(--text-color);
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.profile-tag i {
  color: var(--brand-color);
  margin-right: 0.25rem;
}
.profile-tag:hover {
  background-color: var(--accent);
  color: var(--accent-text);
}
.location-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--tag-bg);
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  color: var(--text-color);
}
.location-badge i {
  color: var(--brand-color);
  margin-right: 0.25rem;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.gallery-item {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  aspect-ratio: 0.75;
  transition: transform 0.2s ease;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.private-gallery-container {
  position: relative;
  background-color: rgba(26, 31, 69, 0.1);
  border-radius: 0.25rem;
  padding: 3rem;
  text-align: center;
}
.private-gallery-container::before {
  content: "🔒";
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.profile-actions .btn {
  margin-bottom: 0.5rem;
  width: 100%;
}
.profile-actions .btn.btn-outline-primary {
  color: var(--cta-color);
  border-color: var(--cta-color);
  font-weight: 500;
}
.profile-actions .btn.btn-outline-primary:hover {
  background-color: var(--cta-color);
  border-color: var(--cta-color);
  color: var(--primary-bg);
}
.profile-detail-item {
  margin-bottom: 1rem;
}
.profile-detail-item .label {
  font-weight: 500;
  color: var(--heading-color);
  display: block;
  margin-bottom: 0.25rem;
}
.profile-detail-item .value {
  color: var(--text-color);
}
.value-item {
  margin-bottom: 1.5rem;
}
.value-item .progress {
  height: 8px;
  background-color: var(--subtle-color);
  border-radius: 0.25rem;
  overflow: hidden;
}
.value-item .progress .progress-bar {
  background-color: var(--brand-color);
  transition: width 0.3s ease;
}
.tab-pane {
  padding: 1.5rem;
}
.tab-pane.fade {
  transition: opacity 0.3s ease;
}
.profile-image {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .profile-picture {
    width: 120px;
    height: 120px;
  }
  .profile-section {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .profile-picture-container {
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    margin-top: -90px;
    margin-bottom: 1.5rem;
  }
  .profile-basics {
    padding-left: 1.5rem;
    text-align: center;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .private-gallery-container {
    padding: 1.5rem;
  }
  .profile-actions .btn {
    margin-bottom: 0.25rem;
  }
}
.circular-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  background-color: var(--accent);
}
.circular-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.circular-badge .circular-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--accent-text);
}
.circular-badge .circular-badge-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  color: var(--accent-text);
}
.circular-badge .circular-badge-label {
  font-size: 0.7rem;
  color: rgba(var(--accent-text), 0.9);
  margin-bottom: 0;
}
.horizontal-badge {
  display: flex;
  align-items: center;
  background-color: var(--bg);
  border: 1px solid var(--e-border-color);
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.horizontal-badge:hover {
  transform: translateX(5px);
  border-color: var(--accent);
}
.horizontal-badge .horizontal-badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--accent-text);
  background-color: var(--accent);
  flex-shrink: 0;
}
.horizontal-badge .horizontal-badge-content {
  flex-grow: 1;
}
.horizontal-badge .horizontal-badge-value {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--text-color);
}
.horizontal-badge .horizontal-badge-label {
  font-size: 0.8rem;
  color: var(--text-color2);
  margin-bottom: 0;
}
.minimal-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg2);
  border-radius: 50rem;
  padding: 0.25rem 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.minimal-badge:hover {
  background-color: rgba(var(--accent), 0.1);
}
.minimal-badge .minimal-badge-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.25rem;
  font-size: 0.8rem;
  color: var(--accent-text);
  background-color: var(--accent);
}
.minimal-badge .minimal-badge-value {
  font-weight: 600;
  margin-right: 0.25rem;
  color: var(--text-highlight);
}
.minimal-badge .minimal-badge-label {
  font-size: 0.85rem;
  color: var(--text-color);
}
.drag-handle {
  cursor: move;
  color: var(--text-color);
  opacity: 0.3;
  padding: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}
.drag-handle:hover {
  background-color: var(--bg2);
  opacity: 0.7;
}
.drag-handle.dragging {
  opacity: 0.5;
  transform: scale(0.98);
}
.delete-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text-color);
  opacity: 0.3;
  background: none;
  border: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
.delete-btn:hover {
  color: #dc3545;
  opacity: 1;
}
.delete-btn:disabled {
  opacity: 0.1;
  cursor: not-allowed;
}
.add-invitee-btn {
  width: 100%;
  border: 2px dashed var(--e-border-color);
  background-color: var(--bg);
  border-radius: 0.5rem;
  padding: 1rem;
  color: var(--text-color);
  opacity: 0.7;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  cursor: pointer;
}
.add-invitee-btn:hover, .add-invitee-btn:focus {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}
.add-invitee-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.setup-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}
.setup-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  transform: translateY(-50%);
  height: 3px;
  width: calc(100% - 80px);
  background-color: var(--e-border-color);
  z-index: 1;
}
.setup-progress .setup-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--e-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
  color: var(--text-color);
  transition: all 0.3s ease;
}
.setup-progress .setup-step.active, .setup-progress .setup-step.completed {
  background-color: var(--accent);
  color: var(--accent-text);
}
.setup-progress .setup-step .setup-step-label {
  font-size: 0.8rem;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-color);
}
.profile-photo-upload {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px dashed var(--e-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1rem;
  background-color: var(--bg);
  transition: all 0.2s ease;
}
.profile-photo-upload:hover {
  border-color: var(--accent);
  background-color: var(--bg2);
}
.profile-photo-upload img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.profile-photo-upload .upload-icon {
  font-size: 2rem;
  color: var(--text-color);
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.photos-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.photos-gallery .photo-upload-box {
  aspect-ratio: 1;
  border: 2px dashed var(--e-border-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-color: var(--bg);
  transition: all 0.2s ease;
}
.photos-gallery .photo-upload-box:hover {
  border-color: var(--accent);
  background-color: var(--bg2);
}
.photos-gallery .photo-upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.tag-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag-selector .tag-item {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: var(--bg2);
  border-radius: 50rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  color: var(--text-color);
  border: 1px solid transparent;
}
.tag-selector .tag-item:hover {
  border-color: var(--accent);
  background-color: rgba(var(--accent), 0.1);
}
.tag-selector .tag-item.selected {
  background-color: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.error-card {
  background-color: var(--bg);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-card .error-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.profile-update-reminder {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  color: var(--text-color);
}
.alert {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}
.alert.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
  color: #145523;
}
.alert.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
  color: #921925;
}
.alert.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  color: #6d5200;
}
.alert.alert-info {
  background-color: rgba(13, 202, 240, 0.1);
  border-color: rgba(13, 202, 240, 0.3);
  color: #08798f;
}
.toast {
  background-color: var(--bg);
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--e-border-color);
}
.toast .toast-header {
  background-color: var(--bg2);
  border-bottom: 1px solid var(--e-border-color);
  padding: 0.5rem 1rem;
  color: var(--text-color);
}
.toast .toast-header.bg-success {
  background-color: #28a745;
  color: var(--ast-global-color-5);
}
.toast .toast-header.bg-danger {
  background-color: #dc3545;
  color: var(--ast-global-color-5);
}
.toast .toast-header.bg-warning {
  background-color: #ffc107;
  color: var(--ast-global-color-3);
}
.toast .toast-header.bg-info {
  background-color: #0dcaf0;
  color: var(--ast-global-color-5);
}
.toast .toast-body {
  padding: 1rem;
  color: var(--text-color);
}
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1060;
}
.tooltip .tooltip-inner {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  max-width: 200px;
}
.tooltip .tooltip-arrow::before {
  border-color: var(--bg-dark);
}
@media (max-width: 992px) {
  .photos-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .setup-progress .setup-step .setup-step-label {
    font-size: 0.7rem;
  }
  .profile-photo-upload {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .circular-badge {
    width: 100px;
    height: 100px;
  }
  .circular-badge .circular-badge-value {
    font-size: 1.5rem;
  }
  .photos-gallery {
    grid-template-columns: 1fr;
  }
  .error-card {
    padding: 1.5rem;
  }
  .error-card .error-icon {
    font-size: 3rem;
  }
  .horizontal-badge:hover {
    transform: none;
  }
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  color: var(--text-color);
  opacity: 0.7;
}
.empty-state i {
  font-size: 50px;
  color: var(--bg2);
  margin-bottom: 1rem;
}
.empty-state h3 {
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: var(--text-color2);
}
.empty-state p {
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--text-color);
}
.empty-state button {
  background-color: var(--accent);
  color: var(--accent-text);
  border: none;
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.empty-state button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.message-status {
  display: flex;
  align-items: center;
}
.message-status .status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.25rem;
}
.message-status .status-indicator.status-sent {
  background-color: #0dcaf0;
}
.message-status .status-indicator.status-delivered {
  background-color: var(--ast-global-color-0);
}
.message-status .status-indicator.status-read {
  background-color: #28a745;
}
.message-status .status-text {
  font-size: 0.75rem;
  color: var(--text-color);
  opacity: 0.7;
}
.message-thread {
  background-color: var(--bg);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--e-border-color);
  transition: all 0.2s ease;
}
.message-thread:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.message-thread.unread {
  background-color: rgba(var(--accent), 0.05);
  border-color: var(--accent);
}
.message-preview .message-sender {
  font-weight: 600;
  color: var(--text-color2);
  margin-bottom: 0.25rem;
}
.message-preview .message-content {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.message-preview .message-time {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}
.match-card {
  background-color: var(--bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.match-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.match-card .match-image {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  position: relative;
}
.match-card .match-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1.5rem;
}
.match-card .match-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.match-card .match-age {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.match-card .match-location {
  font-size: 0.9rem;
  opacity: 0.8;
}
.match-actions {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  background-color: var(--bg2);
}
.match-actions .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.match-actions .action-btn.like-btn {
  background-color: #28a745;
  color: white;
}
.match-actions .action-btn.like-btn:hover {
  background-color: #1e7e34;
  transform: scale(1.1);
}
.match-actions .action-btn.pass-btn {
  background-color: var(--border-color);
  color: var(--text-color);
}
.match-actions .action-btn.pass-btn:hover {
  background-color: #dc3545;
  color: white;
  transform: scale(1.1);
}
.match-actions .action-btn.super-like-btn {
  background-color: #0dcaf0;
  color: white;
}
.match-actions .action-btn.super-like-btn:hover {
  background-color: #0aa1c0;
  transform: scale(1.1);
}
.wink-notification {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.wink-notification .wink-icon {
  font-size: 2rem;
  color: #ffc107;
  margin-right: 1rem;
}
.wink-notification .wink-content {
  flex-grow: 1;
}
.wink-notification .wink-content .wink-message {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-color2);
}
.wink-notification .wink-content .wink-time {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}
.wink-notification .wink-actions .btn {
  margin-left: 0.25rem;
}
.interaction-history .interaction-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.interaction-history .interaction-item:last-child {
  border-bottom: none;
}
.interaction-history .interaction-item .interaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.interaction-history .interaction-item .interaction-icon.like-icon {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.interaction-history .interaction-item .interaction-icon.wink-icon {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.interaction-history .interaction-item .interaction-icon.message-icon {
  background-color: rgba(13, 202, 240, 0.2);
  color: #0dcaf0;
}
.interaction-history .interaction-item .interaction-details {
  flex-grow: 1;
}
.interaction-history .interaction-item .interaction-details .interaction-type {
  font-weight: 500;
  color: var(--text-color2);
}
.interaction-history .interaction-item .interaction-details .interaction-time {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}
.preference-slider {
  margin-bottom: 1.5rem;
}
.preference-slider .slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--text-color2);
  font-weight: 500;
}
.preference-slider .slider-range {
  width: 100%;
  height: 6px;
  border-radius: 0.25rem;
  background-color: var(--border-color);
  outline: none;
  appearance: none;
}
.preference-slider .slider-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  cursor: pointer;
}
.preference-slider .slider-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  cursor: pointer;
  border: none;
}
.filter-group {
  margin-bottom: 1.5rem;
}
.filter-group .filter-title {
  font-weight: 600;
  color: var(--text-color2);
  margin-bottom: 1rem;
}
.filter-group .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-group .filter-options .filter-option {
  padding: 0.25rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 50rem;
  background-color: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.filter-group .filter-options .filter-option:hover {
  border-color: var(--accent);
}
.filter-group .filter-options .filter-option.active {
  background-color: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.activity-feed .activity-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.activity-feed .activity-item:last-child {
  border-bottom: none;
}
.activity-feed .activity-item .activity-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  flex-shrink: 0;
}
.activity-feed .activity-item .activity-content {
  flex-grow: 1;
}
.activity-feed .activity-item .activity-content .activity-text {
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.activity-feed .activity-item .activity-content .activity-time {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}
.activity-feed .activity-item .activity-action {
  flex-shrink: 0;
}
.activity-feed .activity-item .activity-action .btn {
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
}
@media (max-width: 992px) {
  .match-card .match-overlay {
    padding: 1rem;
  }
  .match-actions .action-btn {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  .filter-options .filter-option {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .message-thread {
    padding: 0.5rem;
  }
  .match-actions {
    padding: 0.5rem;
  }
  .match-actions .action-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .wink-notification {
    flex-direction: column;
    text-align: center;
  }
  .wink-notification .wink-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .wink-notification .wink-actions {
    margin-top: 0.5rem;
  }
  .activity-item .activity-avatar {
    width: 40px;
    height: 40px;
  }
}
.profile-not-found, .no-profiles-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 2rem;
  background-color: var(--bg);
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile-not-found .not-found-icon, .no-profiles-found .not-found-icon {
  font-size: 5rem;
  color: var(--text-color);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}
.profile-not-found .not-found-title, .no-profiles-found .not-found-title {
  font-size: 2rem;
  color: var(--text-color2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.profile-not-found .not-found-message, .no-profiles-found .not-found-message {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  line-height: 1.5;
}
.profile-not-found .not-found-actions, .no-profiles-found .not-found-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-not-found .not-found-actions .btn, .no-profiles-found .not-found-actions .btn {
  padding: 0.5rem 1.5rem;
}
.no-profiles-found {
  min-height: 300px;
}
.no-profiles-found .not-found-icon {
  font-size: 4rem;
}
.no-profiles-found .not-found-title {
  font-size: 1.5rem;
}
.empty-search-results {
  text-align: center;
  padding: 3rem;
  background-color: var(--bg2);
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.empty-search-results .empty-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.empty-search-results .empty-title {
  font-size: 1.25rem;
  color: var(--text-color2);
  margin-bottom: 0.5rem;
}
.empty-search-results .empty-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
.empty-search-results .empty-suggestion {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 1.5rem;
}
.loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
.loading-container .loading-text {
  color: var(--text-color);
  font-size: 1rem;
}
.skeleton-loader .skeleton-item {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--border-color) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}
.skeleton-loader .skeleton-item.skeleton-line {
  height: 1rem;
  width: 100%;
}
.skeleton-loader .skeleton-item.skeleton-line.short {
  width: 60%;
}
.skeleton-loader .skeleton-item.skeleton-line.medium {
  width: 80%;
}
.skeleton-loader .skeleton-item.skeleton-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.skeleton-loader .skeleton-item.skeleton-card {
  height: 200px;
  width: 100%;
}
.error-boundary {
  background-color: var(--bg);
  border: 2px solid #dc3545;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}
.error-boundary .error-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}
.error-boundary .error-title {
  font-size: 1.5rem;
  color: var(--text-color2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.error-boundary .error-message {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.error-boundary .error-actions .btn {
  margin: 0 0.25rem;
}
.connection-error {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.connection-error .error-icon {
  font-size: 1.5rem;
  color: #ffc107;
  margin-right: 1rem;
}
.connection-error .error-content {
  flex-grow: 1;
}
.connection-error .error-content .error-title {
  font-weight: 500;
  color: var(--text-color2);
  margin-bottom: 0.25rem;
}
.connection-error .error-content .error-description {
  font-size: 0.9rem;
  color: var(--text-color);
}
.connection-error .retry-button {
  background-color: #ffc107;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.85rem;
}
.connection-error .retry-button:hover {
  background-color: #d39e00;
}
.access-denied {
  background-color: var(--bg);
  border: 2px solid #dc3545;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  margin: 1.5rem 0;
}
.access-denied .access-icon {
  font-size: 4rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}
.access-denied .access-title {
  font-size: 1.75rem;
  color: var(--text-color2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.access-denied .access-message {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.access-denied .access-suggestions {
  background-color: var(--bg2);
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.access-denied .access-suggestions ul {
  text-align: left;
  margin: 0;
  padding-left: 1.5rem;
}
.access-denied .access-suggestions ul li {
  color: var(--text-color);
  margin-bottom: 0.25rem;
}
.membership-required {
  background: linear-gradient(135deg, rgba(var(--accent), 0.1), rgba(var(--accent-2), 0.1));
  border: 2px solid var(--accent);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  margin: 1.5rem 0;
}
.membership-required .membership-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.membership-required .membership-title {
  font-size: 1.75rem;
  color: var(--text-color2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.membership-required .membership-benefits {
  background-color: var(--bg);
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.membership-required .membership-benefits .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.membership-required .membership-benefits .benefit-item:last-child {
  margin-bottom: 0;
}
.membership-required .membership-benefits .benefit-item .benefit-icon {
  color: #28a745;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.membership-required .upgrade-actions .btn {
  margin: 0 0.25rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.status-indicator .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.25rem;
}
.status-indicator.status-online {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.status-indicator.status-online .status-dot {
  background-color: #28a745;
}
.status-indicator.status-offline {
  background-color: rgba(var(--text-color), 0.1);
  color: var(--text-color);
}
.status-indicator.status-offline .status-dot {
  background-color: var(--text-color);
}
.status-indicator.status-away {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.status-indicator.status-away .status-dot {
  background-color: #ffc107;
}
.status-indicator.status-busy {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.status-indicator.status-busy .status-dot {
  background-color: #dc3545;
}
.profile-status {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.profile-status .status-text {
  margin-left: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}
.maintenance-mode {
  background: linear-gradient(135deg, var(--alternate-brand), var(--accent));
  color: white;
  padding: 3rem;
  text-align: center;
  border-radius: 1rem;
  margin: 1.5rem 0;
}
.maintenance-mode .maintenance-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.maintenance-mode .maintenance-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.maintenance-mode .maintenance-message {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.5;
}
.maintenance-mode .maintenance-eta {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
.bounce-in {
  animation: bounce 1s ease-out;
}
@media (max-width: 992px) {
  .profile-not-found, .no-profiles-found {
    min-height: 300px;
    padding: 1.5rem;
  }
  .profile-not-found .not-found-icon, .no-profiles-found .not-found-icon {
    font-size: 4rem;
  }
  .profile-not-found .not-found-title, .no-profiles-found .not-found-title {
    font-size: 1.75rem;
  }
  .profile-not-found .not-found-message, .no-profiles-found .not-found-message {
    font-size: 1rem;
  }
  .error-boundary {
    padding: 1.5rem;
  }
  .error-boundary .error-icon {
    font-size: 2.5rem;
  }
  .error-boundary .error-title {
    font-size: 1.25rem;
  }
  .access-denied, .membership-required {
    padding: 1.5rem;
  }
  .access-denied .access-icon, .access-denied .membership-icon, .membership-required .access-icon, .membership-required .membership-icon {
    font-size: 3rem;
  }
  .access-denied .access-title, .access-denied .membership-title, .membership-required .access-title, .membership-required .membership-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .profile-not-found .not-found-actions, .no-profiles-found .not-found-actions {
    flex-direction: column;
    width: 100%;
  }
  .profile-not-found .not-found-actions .btn, .no-profiles-found .not-found-actions .btn {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .connection-error {
    flex-direction: column;
    text-align: center;
  }
  .connection-error .error-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .connection-error .retry-button {
    margin-top: 0.5rem;
    width: 100%;
  }
  .maintenance-mode {
    padding: 1.5rem;
  }
  .maintenance-mode .maintenance-icon {
    font-size: 4rem;
  }
  .maintenance-mode .maintenance-title {
    font-size: 1.5rem;
  }
  .maintenance-mode .maintenance-message {
    font-size: 1rem;
  }
  .access-denied .upgrade-actions .btn, .access-denied .access-actions .btn, .membership-required .upgrade-actions .btn, .membership-required .access-actions .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}
.stats-card {
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--bg);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}
.stats-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.stats-card i {
  font-size: 2rem;
  opacity: 0.8;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stats-card .stats-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color2);
  margin-bottom: 0.25rem;
}
.stats-card .stats-label {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.stats-card .stats-change {
  font-size: 0.85rem;
  font-weight: 500;
}
.stats-card .stats-change.positive {
  color: #28a745;
}
.stats-card .stats-change.negative {
  color: #dc3545;
}
.stats-card .stats-change.neutral {
  color: var(--text-color);
}
.admin-dashboard .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.admin-dashboard .dashboard-section {
  background-color: var(--bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-dashboard .dashboard-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.admin-dashboard .dashboard-section .section-header .section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color2);
}
.admin-dashboard .dashboard-section .section-header .section-action {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}
.admin-dashboard .dashboard-section .section-header .section-action:hover {
  text-decoration: underline;
}
.admin-table {
  width: 100%;
  background-color: var(--bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-table table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table table th {
  background-color: var(--bg2);
  color: var(--text-color2);
  font-weight: 500;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}
.admin-table table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}
.admin-table table td:last-child {
  text-align: right;
}
.admin-table table tr:hover {
  background-color: var(--bg2);
}
.admin-table table tr:last-child td {
  border-bottom: none;
}
.admin-table .table-actions {
  display: flex;
  gap: 0.25rem;
}
.admin-table .table-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.admin-form {
  background-color: var(--bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-form .form-section {
  margin-bottom: 2rem;
}
.admin-form .form-section:last-child {
  margin-bottom: 0;
}
.admin-form .form-section .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color2);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.admin-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-form .admin-textarea {
  min-height: 120px;
  resize: vertical;
}
.admin-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 50rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.admin-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.25rem;
}
.admin-status.status-pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.admin-status.status-pending .status-dot {
  background-color: #ffc107;
}
.admin-status.status-approved {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.admin-status.status-approved .status-dot {
  background-color: #28a745;
}
.admin-status.status-rejected {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.admin-status.status-rejected .status-dot {
  background-color: #dc3545;
}
.admin-status.status-active {
  background-color: rgba(13, 202, 240, 0.1);
  color: #0dcaf0;
}
.admin-status.status-active .status-dot {
  background-color: #0dcaf0;
}
.admin-notification {
  background-color: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-notification .notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.admin-notification .notification-header .notification-title {
  font-weight: 600;
  color: var(--text-color2);
}
.admin-notification .notification-header .notification-time {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.7;
}
.admin-notification .notification-content {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}
.admin-notification.priority-high {
  border-left-color: #dc3545;
}
.admin-notification.priority-medium {
  border-left-color: #ffc107;
}
.admin-notification.priority-low {
  border-left-color: #0dcaf0;
}
.admin-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-quick-actions .quick-action {
  background-color: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease;
}
.admin-quick-actions .quick-action:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--text-color);
}
.admin-quick-actions .quick-action .action-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.admin-quick-actions .quick-action .action-title {
  font-weight: 500;
  color: var(--text-color2);
  margin-bottom: 0.25rem;
}
.admin-quick-actions .quick-action .action-description {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
}
@media (max-width: 992px) {
  .admin-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .admin-form .form-row {
    grid-template-columns: 1fr;
  }
  .admin-quick-actions {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .admin-table {
    overflow-x: auto;
  }
  .admin-table table {
    min-width: 600px;
  }
}
@media (max-width: 768px) {
  .stats-card {
    text-align: center;
  }
  .stats-card .stats-value {
    font-size: 2rem;
  }
  .admin-quick-actions {
    grid-template-columns: 1fr;
  }
  .admin-form {
    padding: 1.5rem;
  }
  .admin-notification .notification-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-notification .notification-header .notification-time {
    margin-top: 0.25rem;
  }
}
.admin-table button.btn-view {
  background-color: var(--ast-global-color-0);
  color: var(--ast-global-color-7);
}
