
.panel-section{
  padding: 40px 0 80px;
  background: #f8fafc;
  min-height: calc(100vh - 200px);
}

.panel-layout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.panel-sidebar{
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 100px;
}

.panel-sidebar__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.panel-sidebar__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
}

.panel-sidebar__icon svg {
    width: 20px;
    height: 20px;
}

.panel-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    text-align: center;
}

.provider-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(52,211,153,.12);
}

.provider-card__avatar svg {
    width: 32px;
    height: 32px;
    color: #10b981;
}

.provider-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card__info {
    text-align: center;
}

.provider-card__name {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 2px 0;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

.provider-card__company {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.provider-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16,185,129,.15);
}

.provider-card__badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.panel-nav{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.panel-nav__item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  position: relative;
  text-align: left;
}

.panel-nav__item svg{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.panel-nav__item:hover{
  background: rgba(16,185,129,.06);
  color: #10b981;
}

.panel-nav__item.is-active{
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #10b981;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(16,185,129,.08);
}

.panel-nav__item.is-active::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
  border-radius: 0 2px 2px 0;
}

.panel-nav__item--logout{
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  color: #ef4444;
}

.panel-nav__item--logout:hover{
  background: rgba(239,68,68,.06);
  color: #dc2626;
}

.panel-content{
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  min-height: 500px;
}

.panel-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.panel-header__title{
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.panel-header__desc{
  font-size: 14px;
  color: rgba(15,23,42,.65);
  margin: 0;
  line-height: 1.6;
}

.panel-empty{
  text-align: center;
  padding: 80px 20px;
}

.panel-empty__icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(52,211,153,.1), rgba(59,130,246,.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
}

.panel-empty__icon svg{
  width: 36px;
  height: 36px;
}

.panel-empty__title{
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
}

.panel-empty__desc{
  font-size: 15px;
  color: rgba(15,23,42,.65);
  margin: 0 0 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.requests-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.request-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 20px;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}

.request-card:hover{
  border-color: #34d399;
  box-shadow: 0 8px 24px rgba(52,211,153,.12);
  transform: translateY(-2px);
}

.request-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.request-card__badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.request-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.request-card__badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.request-card__badge--category {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.request-card__badge--location {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.request-card--match {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.request-card__category{
  font-size: 12px;
  font-weight: 800;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.request-card__status{
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.request-card__status--open{
  background: rgba(59,130,246,.12);
  color: #3b82f6;
}

.request-card__status--progress{
  background: rgba(251,146,60,.12);
  color: #f97316;
}

.request-card__status--completed{
  background: rgba(34,197,94,.12);
  color: #10b981;
}

.request-card__status--canceled{
  background: rgba(239,68,68,.12);
  color: #ef4444;
}

.request-card__title{
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.4;
}

.request-card__detail{
  font-size: 14px;
  color: rgba(15,23,42,.65);
  line-height: 1.6;
  margin: 0 0 16px;
}

.request-card__meta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.request-card__meta-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15,23,42,.65);
}

.request-card__meta-item svg{
  width: 16px;
  height: 16px;
  color: rgba(15,23,42,.45);
}

.request-card__footer{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.request-card__btn{
  width: 100%;
  justify-content: center;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card{
  background: linear-gradient(135deg, #fff, #f8fafc);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 24px;
  transition: all .2s ease;
}

.stat-card:hover{
  border-color: #34d399;
  box-shadow: 0 8px 24px rgba(52,211,153,.12);
  transform: translateY(-2px);
}

.stat-card__value{
  font-size: 32px;
  font-weight: 900;
  color: #34d399;
  margin: 0 0 8px;
  line-height: 1;
}

.stat-card__label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.65);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.quick-action{
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(59,130,246,.05));
  border: 1px solid rgba(52,211,153,.15);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.quick-action__content{
  flex: 1;
}

.quick-action__title{
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 8px;
}

.quick-action__desc{
  font-size: 14px;
  color: rgba(15,23,42,.65);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 980px){
  .panel-layout{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .panel-sidebar{
    position: static;
  }

  .requests-grid{
    grid-template-columns: 1fr;
  }
}

.job-detail-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 32px;
}

.job-detail-card__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.job-detail-card__category{
  font-size: 12px;
  font-weight: 800;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.job-detail-card__title{
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.job-detail-card__section{
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.job-detail-card__section:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.job-detail-card__label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(15,23,42,.65);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.job-detail-card__value{
  font-size: 15px;
  color: #0f172a;
  line-height: 1.7;
  white-space: pre-wrap;
}

.job-detail-card__offer{
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(59,130,246,.05));
  border: 1px solid rgba(52,211,153,.15);
  border-radius: 12px;
  padding: 20px;
}

.job-detail-card__offer-price{
  font-size: 28px;
  font-weight: 900;
  color: #34d399;
  margin-bottom: 12px;
}

.job-detail-card__offer-message{
  font-size: 14px;
  color: rgba(15,23,42,.75);
  line-height: 1.7;
}

.job-detail-card__customer{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-detail-card__customer-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 10px;
}

.job-detail-card__customer-item svg{
  width: 18px;
  height: 18px;
  color: #34d399;
  flex-shrink: 0;
}

.profile-container{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}

.profile-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.profile-card__avatar-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.profile-card__avatar{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 12px rgba(52,211,153,.15);
}

.profile-card__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__avatar svg{
  width: 40px;
  height: 40px;
  color: #10b981;
}

.profile-card__info{
}

.profile-card__name{
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.profile-card__username{
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 6px;
}

.profile-card__company{
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

.profile-card__email{
  font-size: 12px;
  color: #94a3b8;
}

.profile-card__bio{
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.profile-card__meta{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-card__meta-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.profile-card__meta-item svg{
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.profile-form-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.profile-form-card__title{
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.profile-form__group{
  margin-bottom: 18px;
}

.profile-form__label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.profile-form__input{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  background: #ffffff;
  transition: all .2s ease;
}

.profile-form__input:focus{
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.08);
}

.profile-form__input-wrapper{
  position: relative;
}

.profile-form__prefix{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 800;
  color: rgba(15,23,42,.45);
  pointer-events: none;
}

.profile-form__input--prefix{
  padding-left: 36px;
}

.profile-form__textarea{
  width: 100%;
  min-height: 100px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  background: #ffffff;
  resize: vertical;
  font-family: inherit;
  transition: all .2s ease;
}

.profile-form__textarea:focus{
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.08);
}

.profile-form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-form__file-input{
  position: relative;
}

.profile-form__file{
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.profile-form__file-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  cursor: pointer;
  transition: all .2s ease;
}

.profile-form__file-label:hover{
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  border-color: rgba(16,185,129,.3);
  transform: translateY(-1px);
}

.profile-form__file-label svg{
  width: 16px;
  height: 16px;
}

.profile-form__hint{
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

.profile-form__actions{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.profile-form__divider{
  margin: 24px 0 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
  position: relative;
}

.profile-form__divider span{
  background: #ffffff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: .05em;
  position: relative;
  top: -48px;
}

.verification-badge{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.verification-badge svg{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.verification-badge__title{
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.verification-badge__desc{
  font-size: 13px;
  line-height: 1.6;
}

.verification-badge--success{
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
}

.verification-badge--success svg{
  color: #10b981;
}

.verification-badge--success .verification-badge__title{
  color: #10b981;
}

.verification-badge--success .verification-badge__desc{
  color: rgba(34,197,94,.85);
}

.verification-badge--warning{
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.25);
}

.verification-badge--warning svg{
  color: #f97316;
}

.verification-badge--warning .verification-badge__title{
  color: #f97316;
}

.verification-badge--warning .verification-badge__desc{
  color: rgba(251,146,60,.85);
}

.verification-badge--error{
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
}

.verification-badge--error svg{
  color: #ef4444;
}

.verification-badge--error .verification-badge__title{
  color: #ef4444;
}

.verification-badge--error .verification-badge__desc{
  color: rgba(239,68,68,.85);
}

.verified-badge{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.verification-section{
  margin-bottom: 48px;
}

.verification-section__title{
  font-size: 18px;
  font-weight: 900;
  color: rgba(15,23,42,.95);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,.08);
}

.verification-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.verification-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 24px;
  transition: all .2s;
}

.verification-card:hover{
  border-color: rgba(52,211,153,.25);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.verification-card__header{
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.verification-card__avatar{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.verification-card__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-card__avatar svg{
  width: 32px;
  height: 32px;
  color: #fff;
}

.verification-card__info{
  flex: 1;
  min-width: 0;
}

.verification-card__name{
  font-size: 16px;
  font-weight: 900;
  color: rgba(15,23,42,.95);
  margin-bottom: 4px;
}

.verification-card__email{
  font-size: 13px;
  color: rgba(15,23,42,.55);
  margin-bottom: 4px;
}

.verification-card__company{
  font-size: 13px;
  color: #34d399;
  font-weight: 700;
}

.verification-card__details{
  margin-bottom: 20px;
}

.verification-card__detail{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.verification-card__detail:last-child{
  border-bottom: none;
}

.verification-card__label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.55);
}

.verification-card__value{
  font-size: 14px;
  font-weight: 700;
  color: rgba(15,23,42,.85);
}

.verification-card__link{
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
  text-decoration: none;
  transition: color .2s;
}

.verification-card__link:hover{
  color: #10b981;
}

.verification-card__actions{
  display: flex;
  gap: 12px;
}

.btn--sm{
  padding: 8px 16px;
  font-size: 13px;
}

.btn--sm svg{
  width: 16px;
  height: 16px;
}

.modal{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}

.modal__content{
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.modal__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.modal__title{
  font-size: 18px;
  font-weight: 900;
  color: rgba(15,23,42,.95);
  margin: 0;
}

.modal__close{
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0,0,0,.05);
  border-radius: 8px;
  font-size: 24px;
  color: rgba(15,23,42,.55);
  cursor: pointer;
  transition: all .2s;
}

.modal__close:hover{
  background: rgba(0,0,0,.1);
  color: rgba(15,23,42,.85);
}

.modal__body{
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal__footer{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.badge{
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

.empty-state{
  text-align: center;
  padding: 80px 20px;
  color: rgba(15,23,42,.55);
}

.empty-state svg{
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  margin: 0 auto 24px;
  opacity: .3;
  stroke: currentColor;
}

.empty-state h3{
  font-size: 18px;
  font-weight: 900;
  color: rgba(15,23,42,.75);
  margin-bottom: 8px;
}

.empty-state p{
  font-size: 14px;
  color: rgba(15,23,42,.55);
}

.verification-tabs{
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(0,0,0,.08);
}

.verification-tab{
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15,23,42,.55);
  cursor: pointer;
  transition: all .2s;
  margin-bottom: -2px;
}

.verification-tab:hover{
  color: rgba(15,23,42,.85);
  background: rgba(0,0,0,.02);
}

.verification-tab.is-active{
  color: #34d399;
  border-bottom-color: #34d399;
}

.verification-tab-content{
  display: none;
}

.verification-tab-content.is-active{
  display: block;
}

.verification-card--verified{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.02);
}

.verification-card--verified:hover{
  border-color: rgba(34,197,94,.4);
  box-shadow: 0 4px 12px rgba(34,197,94,.15);
}

.verification-card--rejected{
  border-color: rgba(239,68,68,.25);
  background: rgba(239,68,68,.02);
}

.verification-card--rejected:hover{
  border-color: rgba(239,68,68,.4);
  box-shadow: 0 4px 12px rgba(239,68,68,.15);
}

.notification-dropdown{
  position: relative;
}

.notification-btn{
  position: relative;
}

.notification-badge{
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.notification-dropdown__menu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.notification-dropdown__menu.is-open{
  display: block;
}

.notification-dropdown__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.notification-dropdown__header h3{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin: 0;
}

.notification-mark-all{
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}

.notification-mark-all:hover{
  color: #10b981;
}

.notification-dropdown__list{
  max-height: 400px;
  overflow-y: auto;
}

.notification-item{
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}

.notification-item:hover{
  background: rgba(52,211,153,.05);
}

.notification-item.is-unread{
  background: rgba(52,211,153,.08);
}

.notification-item.is-unread:hover{
  background: rgba(52,211,153,.12);
}

.notification-item__icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-item__icon svg{
  width: 20px;
  height: 20px;
}

.notification-item__content{
  flex: 1;
  min-width: 0;
}

.notification-item__title{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.notification-item__message{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.4;
}

.notification-item__time{
  font-size: 11px;
  color: var(--muted);
  opacity: .7;
}

.notification-empty{
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
}

.notification-empty svg{
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: .3;
}

.notification-empty p{
  font-size: 14px;
  margin: 0;
}

.notification-dropdown__footer{
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.notification-dropdown__footer a{
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
  text-decoration: none;
  transition: color .2s;
}

.notification-dropdown__footer a:hover{
  color: #10b981;
}

.notification-filters{
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.notification-filter{
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.notification-filter:hover{
  color: var(--text);
  background: rgba(52,211,153,.05);
}

.notification-filter.is-active{
  color: #34d399;
  border-bottom-color: #34d399;
}

.notifications-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification-card{
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
}

.notification-card:hover{
  border-color: rgba(52,211,153,.4);
  box-shadow: 0 4px 12px rgba(52,211,153,.1);
}

.notification-card.is-unread{
  background: rgba(52,211,153,.08);
  border-color: rgba(52,211,153,.25);
}

.notification-card.is-unread:hover{
  background: rgba(52,211,153,.12);
  border-color: rgba(52,211,153,.4);
}

.notification-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-card__icon svg{
  width: 24px;
  height: 24px;
}

.notification-card__content{
  flex: 1;
  min-width: 0;
}

.notification-card__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.notification-card__title{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin: 0;
}

.notification-card__time{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.notification-card__message{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.notification-card__read-info{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  opacity: .7;
}

.notification-card__read-info svg{
  width: 14px;
  height: 14px;
}

.panel-nav__badge{
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .notification-dropdown__menu{
    width: 320px;
    right: -20px;
  }

  .notification-card{
    padding: 16px;
    gap: 12px;
  }

  .notification-card__icon{
    width: 40px;
    height: 40px;
  }

  .notification-card__icon svg{
    width: 20px;
    height: 20px;
  }

  .notification-card__title{
    font-size: 14px;
  }

  .notification-card__message{
    font-size: 13px;
  }

  .notification-filters{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .notification-filter{
    padding: 10px 16px;
    white-space: nowrap;
  }

  .panel-layout{
    flex-direction: column;
  }

  .panel-sidebar{
    width: 100%;
    margin-bottom: 24px;
  }

  .panel-content{
    width: 100%;
  }

  .panel-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stats-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .notification-dropdown__menu{
    width: calc(100vw - 40px);
    right: -10px;
  }

  .notification-item{
    padding: 12px 16px;
    gap: 10px;
  }

  .notification-item__icon{
    width: 36px;
    height: 36px;
  }

  .notification-item__icon svg{
    width: 18px;
    height: 18px;
  }

  .notification-card{
    padding: 12px;
  }

  .panel-header__title{
    font-size: 20px;
  }

  .panel-header__desc{
    font-size: 13px;
  }
}

.toast-container{
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast{
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 480px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateX(400px);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.toast--show{
  opacity: 1;
  transform: translateX(0);
}

.toast__icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast__icon svg{
  width: 20px;
  height: 20px;
}

.toast__content{
  flex: 1;
  min-width: 0;
}

.toast__message{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.toast__close{
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.toast__close:hover{
  background: rgba(0,0,0,.05);
  color: var(--text);
}

.toast__close svg{
  width: 16px;
  height: 16px;
}

.toast--success{
  border-color: rgba(34,197,94,.3);
  background: rgba(34,197,94,.08);
}

.toast--success .toast__icon{
  background: rgba(34,197,94,.15);
  color: #10b981;
}

.toast--error{
  border-color: rgba(239,68,68,.3);
  background: rgba(239,68,68,.08);
}

.toast--error .toast__icon{
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

.toast--warning{
  border-color: rgba(251,146,60,.3);
  background: rgba(251,146,60,.08);
}

.toast--warning .toast__icon{
  background: rgba(251,146,60,.15);
  color: #f97316;
}

.toast--info{
  border-color: rgba(59,130,246,.3);
  background: rgba(59,130,246,.08);
}

.toast--info .toast__icon{
  background: rgba(59,130,246,.15);
  color: #3b82f6;
}

@media (max-width: 640px) {
  .toast-container{
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .toast{
    min-width: auto;
    max-width: none;
  }
}

.btn--loading{
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  color: #fff;
}

.btn--ghost.btn--loading::after{
  color: var(--primary);
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}

.skeleton{
  background: linear-gradient(90deg, var(--card) 25%, var(--card2) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

.skeleton-text{
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-text--title{
  height: 24px;
  width: 60%;
}

.skeleton-text--desc{
  height: 14px;
  width: 80%;
}

.skeleton-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-card{
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.fade-in{
  animation: fadeIn .3s ease-in-out;
}

@keyframes fadeIn{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in{
  animation: slideIn .3s ease-out;
}

@keyframes slideIn{
  from{
    opacity: 0;
    transform: translateX(-20px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-in{
  animation: scaleIn .2s ease-out;
}

@keyframes scaleIn{
  from{
    opacity: 0;
    transform: scale(.95);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}

.pulse{
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}

@keyframes pulse{
  0%, 100%{
    opacity: 1;
  }
  50%{
    opacity: .5;
  }
}

.spinner{
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

.spinner--large{
  width: 40px;
  height: 40px;
  border-width: 3px;
}

.loading-overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  backdrop-filter: blur(4px);
}

.loading-overlay__spinner{
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,.2);
  border-right-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.focus-visible:focus{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus-visible,
.panel-nav__item:focus-visible,
.notification-item:focus-visible,
.notification-card:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

*:focus:not(:focus-visible){
  outline: none;
}

.skip-to-content{
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 10000;
}

.skip-to-content:focus{
  top: 0;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-color-scheme: dark){
  html:not([data-theme]){
    --bg: #0b1220;
    --surface: rgba(11,18,32,.72);
    --card: rgba(255,255,255,.06);
    --card2: rgba(255,255,255,.08);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.68);
    --border: rgba(255,255,255,.12);
    --primary: #34d399;
    --primary2: #10b981;
    --danger: #ef4444;
    --shadow: 0 18px 55px rgba(0,0,0,.45);
  }
}

.confirm-modal{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.confirm-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.confirm-modal__content{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow);
  transform: scale(.95);
  transition: transform .2s;
}

.confirm-modal.is-open .confirm-modal__content{
  transform: scale(1);
}

.confirm-modal__icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirm-modal__icon svg{
  width: 24px;
  height: 24px;
}

.confirm-modal--danger .confirm-modal__icon{
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

.confirm-modal--warning .confirm-modal__icon{
  background: rgba(251,146,60,.15);
  color: #f97316;
}

.confirm-modal--info .confirm-modal__icon{
  background: rgba(59,130,246,.15);
  color: #3b82f6;
}

.confirm-modal__title{
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin: 0 0 8px 0;
}

.confirm-modal__message{
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.confirm-modal__actions{
  display: flex;
  gap: 12px;
}

.confirm-modal__actions .btn{
  flex: 1;
}

.empty-state{
  padding: 80px 20px;
  text-align: center;
}

.empty-state__icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.empty-state__icon svg{
  width: 40px;
  height: 40px;
  opacity: .5;
}

.empty-state__title{
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 8px 0;
}

.empty-state__desc{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state__action{
  display: inline-flex;
  gap: 12px;
}

.progress-bar{
  width: 100%;
  height: 4px;
  background: var(--card2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar__fill{
  height: 100%;
  background: var(--primary);
  transition: width .3s ease;
}

.progress-bar--success .progress-bar__fill{
  background: #10b981;
}

.progress-bar--danger .progress-bar__fill{
  background: #ef4444;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  line-height: 1;
}

.badge--primary{
  background: rgba(52,211,153,.15);
  color: #34d399;
}

.badge--success{
  background: rgba(34,197,94,.15);
  color: #10b981;
}

.badge--danger{
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

.badge--warning{
  background: rgba(251,146,60,.15);
  color: #f97316;
}

.badge--info{
  background: rgba(59,130,246,.15);
  color: #3b82f6;
}

.badge--neutral{
  background: var(--card2);
  color: var(--muted);
}

.field-error{
  display: none;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  font-weight: 600;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid{
  border-color: #ef4444 !important;
  background: rgba(239,68,68,.05);
}

input.is-valid,
textarea.is-valid,
select.is-valid{
  border-color: #10b981 !important;
}

input.is-invalid:focus,
textarea.is-invalid:focus,
select.is-invalid:focus{
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

input.is-valid:focus,
textarea.is-valid:focus,
select.is-valid:focus{
  box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}

.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }

.mt-0{ margin-top: 0; }
.mt-1{ margin-top: 8px; }
.mt-2{ margin-top: 16px; }
.mt-3{ margin-top: 24px; }
.mt-4{ margin-top: 32px; }

.mb-0{ margin-bottom: 0; }
.mb-1{ margin-bottom: 8px; }
.mb-2{ margin-bottom: 16px; }
.mb-3{ margin-bottom: 24px; }
.mb-4{ margin-bottom: 32px; }

.p-0{ padding: 0; }
.p-1{ padding: 8px; }
.p-2{ padding: 16px; }
.p-3{ padding: 24px; }
.p-4{ padding: 32px; }

.d-none{ display: none; }
.d-block{ display: block; }
.d-flex{ display: flex; }
.d-grid{ display: grid; }

.flex-column{ flex-direction: column; }
.flex-row{ flex-direction: row; }
.align-center{ align-items: center; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-1{ gap: 8px; }
.gap-2{ gap: 16px; }
.gap-3{ gap: 24px; }

.w-full{ width: 100%; }
.h-full{ height: 100%; }

.rounded{ border-radius: 8px; }
.rounded-lg{ border-radius: 12px; }
.rounded-full{ border-radius: 9999px; }

.shadow-sm{ box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow{ box-shadow: 0 4px 6px rgba(0,0,0,.1); }
.shadow-lg{ box-shadow: 0 10px 15px rgba(0,0,0,.1); }

.opacity-50{ opacity: .5; }
.opacity-75{ opacity: .75; }

.cursor-pointer{ cursor: pointer; }
.cursor-not-allowed{ cursor: not-allowed; }

.overflow-hidden{ overflow: hidden; }
.overflow-auto{ overflow: auto; }

.transition{ transition: all .2s; }

@media (max-width: 768px) {
  .d-md-none{ display: none; }
  .d-md-block{ display: block; }
}

@media (max-width: 480px) {
  .d-sm-none{ display: none; }
  .d-sm-block{ display: block; }
}

.category-selection{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.category-checkbox{
  cursor: pointer;
  position: relative;
}

.category-checkbox input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-checkbox__box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
}

.category-checkbox:hover .category-checkbox__box{
  border-color: rgba(52,211,153,.3);
  background: rgba(52,211,153,.04);
}

.category-checkbox input:checked + .category-checkbox__box{
  border-color: #34d399;
  background: rgba(52,211,153,.08);
}

.category-checkbox__icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
}

.category-checkbox input:checked + .category-checkbox__box .category-checkbox__icon{
  background: rgba(52,211,153,.15);
  color: #34d399;
}

.category-checkbox__icon svg{
  width: 20px;
  height: 20px;
}

.category-checkbox__label{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

@media (max-width: 640px) {
  .category-selection{
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .category-checkbox__box{
    padding: 12px;
  }
}

.district-selection{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding: 12px;
  background: var(--card2);
  border-radius: 8px;
}

.district-checkbox{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.district-checkbox input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.district-checkbox__label{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all .2s;
  width: 100%;
}

.district-checkbox__label:before{
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  transition: all .2s;
  flex-shrink: 0;
}

.district-checkbox:hover .district-checkbox__label{
  border-color: rgba(52,211,153,.3);
  background: rgba(52,211,153,.04);
}

.district-checkbox input:checked + .district-checkbox__label{
  border-color: #34d399;
  background: rgba(52,211,153,.08);
  font-weight: 600;
}

.district-checkbox input:checked + .district-checkbox__label:before{
  background: #34d399;
  border-color: #34d399;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.loading-spinner,
.error-message,
.info-message{
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.error-message{
  color: #ef4444;
}

@media (max-width: 640px) {
  .district-selection{
    grid-template-columns: 1fr;
  }
}

.providers-hero{
  padding: 40px 0 40px !important;
  background: linear-gradient(135deg, rgba(52,211,153,.08) 0%, rgba(52,211,153,.02) 100%);
  border-bottom: 1px solid var(--border);
  margin-top: 0 !important;
}

.providers-hero__breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.providers-hero__breadcrumb a{
  color: var(--muted);
  transition: color .2s;
}

.providers-hero__breadcrumb a:hover{
  color: var(--primary);
}

.providers-hero__title{
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 8px 0;
}

.providers-hero__desc{
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.providers-section{
  padding: 10px 0 80px;
}

.providers-layout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.providers-sidebar{
  position: sticky;
  top: 100px;
  align-self: start;
}

.filter-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.filter-card__header {
  display: none;
}

.filter-card__title{
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px 0;
  text-align: left;
}

.filter-group{
  margin-bottom: 24px;
}

.filter-group:last-child{
  margin-bottom: 0;
}

.filter-group__label{
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-align: left;
}

.filter-group__toggle {
  display: none;
}

.filter-group__content {
  display: block;
}

.filter-options{
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.filter-option{
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text);
  border-radius: 6px;
  transition: all .2s;
  text-align: left;
  text-decoration: none;
  width: 100%;
  display: block;
}

.filter-option:hover{
  background: rgba(52,211,153,.08);
  color: var(--primary);
}

.filter-option.is-active{
  background: rgba(52,211,153,.12);
  color: var(--primary);
  font-weight: 700;
}

.filter-select{
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
}

.filter-select:hover{
  border-color: rgba(52,211,153,.3);
}

.filter-select:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52,211,153,.1);
}

.providers-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.provider-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
}

.provider-card:hover{
  border-color: rgba(52,211,153,.3);
  box-shadow: 0 8px 24px rgba(52,211,153,.12);
  transform: translateY(-4px);
}

.provider-card__header{
  position: relative;
  padding: 24px 24px 0;
}

.provider-card__avatar{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card2);
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--card);
  overflow: hidden;
}

.provider-card__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-card__avatar svg{
  width: 36px;
  height: 36px;
  color: var(--muted);
}

.provider-card__verified{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.provider-card__verified svg{
  width: 100%;
  height: 100%;
}

.provider-card__body{
  padding: 0 24px 20px;
}

.provider-card__name{
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 4px 0;
}

.provider-card__company{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.provider-card__bio{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.provider-card__meta{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.provider-card__meta-item{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.provider-card__meta-item svg{
  width: 16px;
  height: 16px;
}

.provider-card__categories{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.provider-card__category{
  display: inline-flex;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(52,211,153,.1);
  color: var(--primary);
  border-radius: 6px;
}

.provider-card__footer{
  padding: 16px 24px 24px;
  display: flex;
  gap: 8px;
}

.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination__btn{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
}

.pagination__btn:hover{
  border-color: var(--primary);
  color: var(--primary);
}

.pagination__btn svg{
  width: 16px;
  height: 16px;
}

.pagination__pages{
  display: flex;
  gap: 4px;
}

.pagination__page{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
}

.pagination__page:hover{
  border-color: var(--primary);
  color: var(--primary);
}

.pagination__page.is-active{
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

@media (max-width: 1024px) {
  .providers-layout{
    grid-template-columns: 1fr;
  }

  .providers-sidebar{
    position: static;
  }

  .filter-card{
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .providers-hero__title{
    font-size: 24px;
    word-wrap: break-word;
  }
  
  .providers-layout{
    grid-template-columns: 1fr;
  }

  .filter-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
  }

  .filter-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
  }

  .filter-card__header:active {
    background: rgba(0, 0, 0, 0.02);
  }

  .filter-card__title {
    margin: 0;
    font-size: 16px;
  }

  .filter-card__toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .filter-card.is-collapsed .filter-card__toggle-icon {
    transform: rotate(-90deg);
  }

  .filter-card__body {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .filter-card.is-collapsed .filter-card__body {
    max-height: 0;
  }

  .filter-card__inner {
    padding: 16px;
    text-align: left;
  }

  .filter-group {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .filter-group:last-child {
    border-bottom: none;
  }

  .filter-group__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .filter-group__label {
    margin: 0;
    font-size: 12px;
    pointer-events: none;
  }

  .filter-group__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .filter-group.is-collapsed .filter-group__icon {
    transform: rotate(-90deg);
  }

  .filter-group__content {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 12px;
  }

  .filter-group.is-collapsed .filter-group__content {
    max-height: 0;
    padding-bottom: 0;
  }

  .filter-group.filter-group--select .filter-group__toggle {
    display: none;
  }

  .filter-group.filter-group--select .filter-group__label {
    display: block;
    margin-bottom: 8px;
    padding: 12px 0 0 0;
  }

  .filter-group.filter-group--select .filter-group__content {
    max-height: none;
    padding-bottom: 12px;
  }

  .filter-group.filter-group--select.is-collapsed .filter-group__content {
    max-height: none;
    padding-bottom: 12px;
  }

  .filter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .filter-option {
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .filter-select {
    font-size: 13px;
    padding: 8px 10px;
  }
}

.modal--large .modal__content{
  max-width: 800px;
}

.detail-grid{
  display: grid;
  gap: 32px;
}

.detail-section{
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.detail-section:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.detail-section:first-child{
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-avatar{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.detail-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-avatar svg{
  width: 48px;
  height: 48px;
  color: #fff;
}

.detail-info{
  flex: 1;
}

.detail-info__name{
  font-size: 24px;
  font-weight: 900;
  color: rgba(15,23,42,.95);
  margin-bottom: 6px;
}

.detail-info__email{
  font-size: 14px;
  color: rgba(15,23,42,.55);
  margin-bottom: 6px;
}

.detail-info__company{
  font-size: 15px;
  color: #34d399;
  font-weight: 700;
}

.detail-section__title{
  font-size: 16px;
  font-weight: 900;
  color: rgba(15,23,42,.95);
  margin-bottom: 16px;
}

.detail-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.detail-row:last-child{
  border-bottom: none;
}

.detail-label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.55);
  flex-shrink: 0;
  width: 150px;
}

.detail-value{
  font-size: 14px;
  font-weight: 600;
  color: rgba(15,23,42,.85);
  flex: 1;
  text-align: right;
}

.detail-link{
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
  text-decoration: none;
  transition: color .2s;
}

.detail-link:hover{
  color: #10b981;
}

.detail-document-preview{
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.02);
}

.detail-document-preview img{
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

@media (max-width: 980px){
  .profile-container{
    grid-template-columns: 1fr;
  }

  .profile-card{
    position: static;
  }

  .verification-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .panel-section{padding: 20px 0 40px}
  .panel-content{padding: 20px; border-radius: 12px}
  .panel-header{flex-direction: column; align-items: flex-start}
  .panel-header__title{font-size: 24px}
  .panel-sidebar{padding: 20px; border-radius: 12px}
  .stats-grid{grid-template-columns: 1fr; gap: 12px}
  .quick-action{flex-direction: column; align-items: flex-start; padding: 20px}
  .job-detail-card{padding: 20px}
  .job-detail-card__header{flex-direction: column}
  .job-detail-card__title{font-size: 20px}
  .profile-card{padding: 20px}
  .profile-form-card{padding: 20px}
  .profile-form__row{grid-template-columns: 1fr}
}
