/* =====================================================
   Teamz — Marketplace Module CSS
   Talent Marketplace, Find Work
   ===================================================== */

/* ── Search Hero Bar ── */
.mp-searchbar {
  margin-top: 68px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-searchbar form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 20px;
  flex: 1;
  max-width: 600px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}

.mp-searchbar form:focus-within {
  border-color: var(--green);
}

.mp-searchbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
}

.mp-searchbar button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  font-size: .92rem;
}

.mp-searchbar button:hover {
  background: var(--green-dark);
}

.mp-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.mp-sort label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.mp-sort select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .85rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* ── Layout ── */
.mp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 100px;
  min-height: 70vh;
}

/* ── Filter Sidebar ── */
.mp-sidebar {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}

.mp-sidebar::-webkit-scrollbar {
  width: 4px;
}

.mp-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.filter-radio,
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}

.filter-radio input,
.filter-check input {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}

.filter-radio label,
.filter-check label {
  font-size: .88rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-radio:hover label,
.filter-check:hover label {
  color: var(--green);
}

.filter-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-range input {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  color: var(--ink);
}

.filter-range input:focus {
  outline: none;
  border-color: var(--green);
}

.filter-range span {
  color: var(--muted);
  font-size: .85rem;
}

.filter-stars label {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
}

.filter-stars input {
  accent-color: var(--green);
}

.btn-clear {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}

.btn-clear:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── Results Area ── */
.mp-results {
  padding: 24px 0 24px 32px;
}

.mp-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mp-results-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

#resultsCount {
  font-weight: 700;
  color: var(--ink);
}

/* ── Freelancer Cards ── */
.wb-results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wb-fcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  cursor: pointer;
  transition: all .25s;
}

.wb-fcard:hover {
  border-color: #b0d4b0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  transform: translateX(3px);
}

.wb-fcard-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.wb-fcard-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.wb-fcard-avatar img,
.wb-fcard-avatar span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green), #0a9a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.wb-fcard-avatar span {
  display: flex;
}

.wb-fcard-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
}

.wb-fcard-meta {
  flex: 1;
}

.wb-fcard-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.wb-badge-verified {
  color: var(--green);
  font-size: .9rem;
}

.wb-fcard-title {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 5px;
}

.wb-fcard-location {
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wb-fcard-location i {
  font-size: .85rem;
}

.wb-fcard-rate {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.wb-fcard-rate span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
}

.wb-fcard-bio {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.wb-fcard-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.wb-skill-chip {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
}

.wb-skill-more {
  color: var(--muted);
}

.wb-fcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wb-fcard-stats {
  display: flex;
  gap: 20px;
}

.wb-fcard-stats span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wb-fcard-stats i {
  color: var(--green);
}

.wb-fcard-stats .ri-star-fill {
  color: #f5a623;
}

.wb-fcard-actions {
  display: flex;
  gap: 10px;
}

.wb-btn-view {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: .2s;
}

.wb-btn-view:hover {
  border-color: var(--green);
  color: var(--green);
}

.wb-btn-hire {
  padding: 9px 20px;
  background: var(--green);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  transition: .2s;
}

.wb-btn-hire:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--green-glow);
}

/* ── Skeleton Shimmer ── */
.wb-skeleton-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
}

.sk {
  background: linear-gradient(90deg, #f0f4f0 25%, #e4ece4 50%, #f0f4f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  height: 18px;
  margin-bottom: 12px;
}

.sk-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.sk-line-sm {
  height: 12px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* ── Empty State ── */
.wb-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}

.wb-empty-state i {
  font-size: 4rem;
  color: var(--border);
  display: block;
  margin-bottom: 20px;
}

.wb-empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.wb-empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Pagination ── */
#wbPagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.wb-page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-page-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.wb-page-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.wb-page-btn.disabled {
  opacity: .4;
  pointer-events: none;
}

.wb-page-dots {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: var(--muted);
}

/* ── Responsive ── */
@media(max-width: 768px) {
  .mp-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
  }

  .mp-sidebar {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    height: auto;
    z-index: 800;
    background: #fff;
    padding: 24px;
  }

  .mp-sidebar.open {
    display: block;
  }

  .mp-searchbar {
    padding: 14px 20px;
  }

  .wb-fcard-actions {
    flex-direction: column;
  }
}

@media(max-width: 480px) {
  .mp-searchbar { flex-direction: column; align-items: stretch; }
  .mp-searchbar form { flex-direction: column; border-radius: 16px; padding: 12px; gap: 10px; max-width: 100%; }
  .mp-searchbar button { width: 100%; }
  .mp-sort { margin-left: 0; justify-content: center; width: 100%; }
  .wb-fcard { padding: 20px 16px; }
  .wb-fcard-top { flex-direction: column; align-items: center; text-align: center; }
  .wb-fcard-name { justify-content: center; }
  .wb-fcard-location { justify-content: center; }
  .wb-fcard-stats { flex-direction: column; gap: 10px; align-items: center; }
}
/* ── Find Work / Job Header ── */
.marketplace-header {
  background: var(--ink);
  padding: 100px 20px 140px;
  text-align: center;
  color: #fff;
  margin-top: 68px;
}

.marketplace-header h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.marketplace-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.search-container {
  max-width: 800px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.search-bar {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  border: 1px solid var(--border);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  outline: none;
  border-radius: 12px;
}

.search-bar button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 40px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.search-bar button:hover {
  background: #17a863;
  transform: translateY(-1px);
}

/* ── Marketplace Grid (Find Work) ── */
.marketplace-grid {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 0 20px;
}

/* ── Job Cards ── */
.job-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.job-card:hover {
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(29, 191, 115, 0.05);
  transform: translateY(-2px);
}

.job-card .category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f0fdf4;
  color: var(--green);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.job-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.job-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.job-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f4f7f4;
  padding-top: 20px;
}

.job-info-list {
  display: flex;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-item i {
  font-size: 1.1rem;
  color: var(--green);
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.btn-bid {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.btn-bid:hover {
  background: var(--green-dark);
}

/* ── Job Details View ── */
.job-details-wrap {
  max-width: 1100px;
  margin: 40px auto 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  padding: 0 20px;
}

.main-content,
.sidebar-content {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 40px;
}

.job-header-section {
  border-bottom: 1px solid #f0f3f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.category-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0fdf4;
  color: var(--green);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.job-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .marketplace-grid { grid-template-columns: 1fr; }
  .job-details-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .marketplace-header { padding: 60px 16px 100px; }
  .marketplace-header h1 { font-size: 2rem; }
  .search-bar { flex-direction: column; padding: 12px; border-radius: 16px; }
  .search-bar input { padding: 12px; }
  .search-bar button { padding: 12px; width: 100%; }
  .job-card { padding: 20px 16px; }
  .job-card h3 { font-size: 1.2rem; }
  .job-info-row { flex-direction: column; gap: 16px; align-items: flex-start; }
  .job-info-list { flex-direction: column; gap: 10px; }
  .btn-bid { width: 100%; text-align: center; }
  .main-content, .sidebar-content { padding: 20px 16px; }
  .job-title { font-size: 1.8rem; }
}
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.job-meta-row i {
  color: var(--green);
  margin-right: 6px;
}

.job-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  white-space: pre-line;
}

/* Sidebar Profile */
.client-card {
  text-align: center;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f4f7f4;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.client-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.client-info {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.stat-box {
  background: #f9faf9;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.stat-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-box strong {
  font-size: 1rem;
  color: var(--ink);
}

/* Bidding Form */
.proposal-box {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #f0f3f0;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background: var(--green-dark);
}

.login-prompt {
  background: #fff8e1;
  border: 1px solid #fde68a;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: #92400e;
  font-weight: 600;
}

/* ── Freelancer Profile View ── */
.profile-wrap {
  max-width: 1100px;
  margin: 40px auto 100px;
  padding: 0 20px;
}

.profile-header-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 60px;
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.profile-avatar-big {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #f4f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--green);
  flex-shrink: 0;
  overflow: hidden;
}

.profile-avatar-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-main-info h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.profile-title {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.profile-stats {
  display: flex;
  gap: 40px;
}

.profile-stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 800;
}

.profile-stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.profile-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.profile-section {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: var(--green);
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.sidebar-box {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
}

.btn-hire-me {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  display: block;
  margin-bottom: 16px;
  transition: 0.25s;
}

.btn-hire-me:hover {
  background: #17a863;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(29, 191, 115, 0.2);
}

/* ── Freelancer Profile Mobile Responsiveness ── */
@media (max-width: 992px) {
  .profile-body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .profile-header-card { flex-direction: column; text-align: center; gap: 30px; align-items: center; }
  .profile-stats { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .profile-wrap { margin: 20px auto 60px; padding: 0 16px; }
  .profile-header-card { padding: 30px 20px; border-radius: 16px; }
  .profile-avatar-big { width: 120px; height: 120px; font-size: 3.5rem; }
  .profile-main-info h1 { font-size: 2rem; }
  .profile-section { padding: 24px 16px; border-radius: 16px; }
  .sidebar-box { padding: 24px 16px; border-radius: 16px; }
}

/* Added review testimonial styling inside freelancer cards */
.wb-fcard-review {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 12px 0 16px 0;
  border: 1px dashed var(--border);
}
.wb-fcard-review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.wb-fcard-review-comment {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 6px 0;
}
.wb-fcard-review-client {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  display: block;
}
.wb-portfolio-badge {
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.wb-skill-chip {
  margin-bottom: 6px;
}

/* ── Mobile Filters & Responsive Tweaks ── */
@media (max-width: 768px) {
  .right-filters {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    z-index: 1000;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .right-filters.open {
    display: block !important;
  }
  .close-filters-btn {
    display: inline-block !important;
  }
  .mobile-filter-trigger {
    display: inline-flex !important;
  }
  .search-btns-group {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .search-btns-group button {
    flex: 1;
  }
  #searchForm {
    flex-direction: column;
    align-items: stretch !important;
  }
  
  /* Talent Marketplace sidebar adjustments */
  .mp-sidebar {
    top: 68px;
    height: calc(100vh - 68px);
    padding: 24px;
    border-right: none;
  }
  .sidebar-mobile-header {
    display: flex !important;
  }
}

@media (max-width: 576px) {
  .job-card-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .card-action-btns {
    width: 100%;
    justify-content: flex-end;
  }
  .upwork-wrap {
    margin-top: 80px;
    padding: 0 16px;
  }
}
