:root {
  --primary-color: #182638;
  --primary-color-rgb: 24, 38, 56;

  --tblr-primary: #182638;
  --tblr-primary-rgb: 24, 38, 56;

  /* --tblr-secondary: #F11D46; */
  /* --tblr-secondary-rgb: 241, 29, 70; */

  /* --tblr-success: #198754; */
}

/* Modern Card Styles */
.card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Profile Header Styles */
.profile-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
/* 
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #333;
  font-weight: 600;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

/* .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* Progress Steps Styles */
.steps {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-item.active .step-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.step-content p {
  font-size: 0.875rem;
  color: #6c757d;
}

/* Form Styles */
.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

/* Skills Styles */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.skill-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1050;
}

.toast {
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }
  
  .steps::before {
    display: none;
  }
  
  .step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .step-icon {
    margin: 0 1rem 0 0;
  }
  
  .step-content {
    text-align: left;
  }
  
  .profile-header {
    /* padding: 1rem; */
  }
  
  /* .avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  } */
}

/* Benefits Section Styles */
.benefit-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--tblr-primary);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--tblr-border-radius);
  margin: 0.25rem;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
}

.benefit-badge:hover {
  background-color: var(--tblr-primary-dark);
}

.benefit-badge .benefit-name {
  margin-right: 0.25rem;
}

.benefit-badge .btn-close {
  font-size: 0.75rem;
  opacity: 0.8;
  padding: 0.25rem;
  margin-left: 0.25rem;
}

.benefit-badge .btn-close:hover {
  opacity: 1;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin: 0.25rem;
  border: 1px solid var(--tblr-primary);
  border-radius: var(--tblr-border-radius);
  background-color: white;
  color: var(--tblr-primary);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.benefit-tag:hover {
  background-color: var(--tblr-primary-lighter);
  border-color: var(--tblr-primary-darker);
  color: var(--tblr-primary-darker);
}

.benefit-tag.selected {
  display: none !important;
}

.benefit-tag.selected:hover {
  background-color: var(--tblr-primary-darker);
  border-color: var(--tblr-primary-darker);
}

.selected-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.5rem;
  min-height: 2.5rem;
  border: 1px solid var(--tblr-border-color);
  border-radius: var(--tblr-border-radius);
  background-color: var(--tblr-bg-surface);
}

.popular-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.popular-benefits .btn {
  border-radius: var(--tblr-border-radius);
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
}

.form-hint {
  color: var(--tblr-secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Large switch for Disclose Salary Range */
.form-switch-lg .form-check-input {
  width: 3rem;
  height: 1.5rem;
  font-size: 1.25rem;
}
.form-switch-lg .form-check-input:checked {
  background-size: 1.5rem 1.5rem;
}
.form-switch-lg .form-check-label {
  font-size: 1.15rem;
  margin-left: 0.75rem;
}
