/* Freelancer Add Experience Page Styles */

/* Profile Section - Styles moved to main style.css */

/* Content Box - Styles moved to main style.css */

/* Welcome Head - Styles moved to main style.css */

/* Content Box Inner - Styles moved to main style.css */

/* Form Styles - Styles moved to main style.css */

/* Work Experience Cards */
.work-exp-outer {
  margin-top: 20px;
}

.work-exp-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.work-exp-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.work-exp-card:last-child {
  margin-bottom: 0;
}

.work-exp-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.work-exp-left h4 {
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--typo-secondary);
  margin-bottom: 8px;
}

.work-location {
  font-size: var(--font-small);
  color: var(--text-color);
  font-weight: 500;
}

.work-exp-action {
  display: flex;
  gap: 10px;
}

.work-exp-action button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-exp-action button:hover {
  background: var(--light-orange);
}

.work-dis {
  margin-bottom: 20px;
}

.work-dis p {
  font-size: var(--font-small);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* Document Grid - Styles moved to main style.css */

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-color);
}

.empty-state p {
  font-size: var(--font-16);
  margin: 0;
}

/* Buttons - Styles moved to main style.css */

/* Responsive Design - Styles moved to main style.css */