:root{
  --pa-bg:#f5f7fb;
  --pa-card:#ffffff;
  --pa-text:#162035;
  --pa-muted:#718096;
  --pa-line:#e4eaf2;
  --pa-primary:#1565d8;
  --pa-primary-soft:#eaf2ff;
  --pa-green:#0aad62;
  --pa-green-soft:#e8fbf1;
  --pa-orange:#f0523d;
  --pa-orange-soft:#fff0ed;
  --pa-blue:#2584e9;
  --pa-shadow:0 12px 34px rgba(22,32,53,.07);
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  min-height:100%;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--pa-bg);
  color:var(--pa-text);
}

.pa-body{
  min-height:100vh;
}

.pa-shell{
  min-height:100vh;
}

.pa-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--pa-line);
}

.pa-header-top,
.pa-header-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
}

.pa-header-top{
  height:74px;
  border-bottom:1px solid #edf1f6;
}

.pa-header-bottom{
  min-height:62px;
}

.pa-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--pa-primary);
  text-decoration:none;
  font-weight:800;
  font-size:19px;
}

.pa-brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:11px;
  background:var(--pa-primary);
  color:#fff;
  font-size:17px;
  letter-spacing:-1px;
}

.pa-company{
  display:flex;
  align-items:center;
  gap:8px;
  color:#64748b;
  font-size:14px;
  font-weight:700;
}

.pa-company-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--pa-green);
}

.pa-header-left,
.pa-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.pa-menu-toggle,
.pa-home-button,
.pa-action-button{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--pa-line);
  border-radius:13px;
  background:#fff;
  color:#233044;
  text-decoration:none;
  cursor:pointer;
  font-size:16px;
}

.pa-menu-toggle{
  display:none;
}

.pa-user-label{
  padding:11px 14px;
  border:1px solid var(--pa-line);
  border-radius:13px;
  background:#fff;
  color:#475569;
  font-size:13px;
  font-weight:700;
}

.pa-sidebar{
  position:fixed;
  top:136px;
  bottom:0;
  left:0;
  width:292px;
  overflow-y:auto;
  background:#fff;
  border-right:1px solid var(--pa-line);
  z-index:25;
}

.pa-sidebar-inner{
  padding:16px;
}

.pa-menu-title{
  margin:24px 6px 10px;
  color:#94a3b8;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}

.pa-menu-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:52px;
  margin:8px 0;
  padding:0 15px;
  border-radius:15px;
  color:#1f2a3d;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  background:#f8fafc;
  transition:.18s ease;
}

.pa-menu-link:hover{
  background:#edf4ff;
  color:var(--pa-primary);
}

.pa-menu-link.is-active{
  background:var(--pa-primary-soft);
  color:var(--pa-primary);
  box-shadow:inset 0 0 0 2px var(--pa-primary);
}

.pa-menu-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.pa-menu-left i{
  width:18px;
  text-align:center;
  color:#64748b;
}

.pa-menu-link.is-active i,
.pa-menu-link:hover i{
  color:var(--pa-primary);
}

.pa-content{
  min-height:calc(100vh - 136px);
  margin-left:292px;
  padding:28px;
}

.pa-dashboard{
  max-width:1500px;
  margin:0 auto;
}

.pa-dashboard-hero{
  min-height:192px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding:26px 28px;
  border-radius:26px;
  color:#fff;
  background:linear-gradient(120deg,#e83a29 0%,#f14949 55%,#fa7180 100%);
  box-shadow:0 16px 34px rgba(224,63,58,.22);
}

.pa-eyebrow{
  margin-bottom:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
}

.pa-hero-count{
  font-size:52px;
  line-height:1;
  font-weight:900;
  letter-spacing:-2px;
}

.pa-hero-text{
  margin-top:8px;
  font-size:15px;
  font-weight:700;
}

.pa-live-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border-radius:99px;
  color:#047857;
  background:#e7fff4;
  font-size:12px;
  font-weight:800;
}

.pa-live-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#12b76a;
}

.pa-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}

.pa-small-stat{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 18px;
  border:1px solid var(--pa-line);
  border-radius:18px;
  background:#fff;
}

.pa-small-stat span{
  max-width:110px;
  color:#667085;
  font-size:12px;
  font-weight:900;
  line-height:15px;
}

.pa-small-stat strong{
  color:#25324a;
  font-size:28px;
  letter-spacing:-1px;
}

.pa-small-stat-green{
  border-color:#b8efd3;
  background:var(--pa-green-soft);
}

.pa-small-stat-green strong{
  color:var(--pa-green);
}

.pa-small-stat-blue{
  border-color:#c6e1ff;
  background:#edf7ff;
}

.pa-small-stat-blue strong{
  color:var(--pa-blue);
}

.pa-section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:28px 0 14px;
}

.pa-section-heading h1{
  margin:0;
  color:#182238;
  font-size:25px;
  letter-spacing:-.8px;
}

.pa-section-heading span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 12px;
  border-radius:99px;
  color:#078255;
  background:#e9fff4;
  font-size:12px;
  font-weight:800;
}

.pa-section-heading span i{
  font-size:8px;
}

.pa-request-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.pa-request-card{
  position:relative;
  min-height:150px;
  overflow:hidden;
  padding:18px;
  border:1px solid #dce7e1;
  border-radius:22px;
  background:#fff;
  box-shadow:var(--pa-shadow);
}

.pa-request-card::after{
  content:"";
  position:absolute;
  right:-34px;
  bottom:-44px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(16,185,129,.11);
}

.pa-request-card-orange{
  border-color:#ffc6bd;
}

.pa-request-card-orange::after{
  background:rgba(240,82,61,.10);
}

.pa-request-card-blue{
  border-color:#c9e2ff;
}

.pa-request-card-blue::after{
  background:rgba(37,132,233,.10);
}

.pa-request-icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  color:var(--pa-green);
  background:var(--pa-green-soft);
  font-size:17px;
}

.pa-request-card-orange .pa-request-icon{
  color:var(--pa-orange);
  background:var(--pa-orange-soft);
}

.pa-request-card-blue .pa-request-icon{
  color:var(--pa-blue);
  background:#eaf5ff;
}

.pa-request-number{
  position:absolute;
  top:18px;
  right:18px;
  min-width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:99px;
  color:#fff;
  background:var(--pa-green);
  font-size:19px;
  font-weight:900;
}

.pa-request-card-orange .pa-request-number{
  background:var(--pa-orange);
}

.pa-request-card-blue .pa-request-number{
  background:var(--pa-blue);
}

.pa-request-card h3{
  position:relative;
  z-index:1;
  margin:28px 0 5px;
  color:#1d2939;
  font-size:15px;
  font-weight:900;
}

.pa-request-card p{
  position:relative;
  z-index:1;
  margin:0;
  color:#718096;
  font-size:12px;
  font-weight:700;
}

@media (max-width:1100px){
  .pa-request-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:850px){
  .pa-menu-toggle{
    display:inline-flex;
  }

  .pa-sidebar{
    top:0;
    width:292px;
    transform:translateX(-100%);
    transition:transform .22s ease;
    box-shadow:16px 0 34px rgba(15,23,42,.15);
  }

  .pa-body.pa-sidebar-open .pa-sidebar{
    transform:translateX(0);
  }

  .pa-content{
    margin-left:0;
    padding:16px;
  }

  .pa-header-top{
    height:66px;
  }

  .pa-header-bottom{
    min-height:58px;
  }

  .pa-user-label{
    display:none;
  }
}

@media (max-width:620px){
  .pa-header-top,
  .pa-header-bottom{
    padding-left:14px;
    padding-right:14px;
  }

  .pa-brand-name{
    font-size:16px;
  }

  .pa-company{
    font-size:12px;
  }

  .pa-dashboard-hero{
    min-height:178px;
    padding:22px;
  }

  .pa-hero-count{
    font-size:46px;
  }

  .pa-stat-grid{
    grid-template-columns:1fr;
  }

  .pa-request-grid{
    grid-template-columns:1fr;
  }

  .pa-section-heading{
    align-items:flex-start;
    gap:12px;
    flex-direction:column;
  }
}
























.pa-module-page{
  max-width:1500px;
  margin:0 auto;
}

.pa-page-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.pa-page-eyebrow{
  margin-bottom:7px;
  color:#8b9ab0;
  font-size:11px;
  font-weight:900;
  letter-spacing:.09em;
}

.pa-page-heading h1{
  margin:0;
  color:#172033;
  font-size:31px;
  line-height:1.1;
  letter-spacing:-1px;
}

.pa-page-heading p{
  margin:8px 0 0;
  color:#718096;
  font-size:14px;
}

.pa-page-count{
  display:flex;
  align-items:center;
  gap:9px;
  padding:12px 15px;
  border:1px solid #dbe7f4;
  border-radius:15px;
  background:#fff;
  color:#64748b;
  box-shadow:0 7px 20px rgba(15,23,42,.04);
  font-size:13px;
  font-weight:800;
}

.pa-page-count i{
  color:var(--pa-primary);
  font-size:17px;
}

.pa-page-count strong{
  color:#172033;
  font-size:18px;
}

.pa-alert{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:14px;
  font-size:13px;
  font-weight:800;
}

.pa-alert-success{
  color:#067647;
  background:#eafff2;
  border:1px solid #bcefd2;
}

.pa-alert-error{
  color:#b42318;
  background:#fff1f0;
  border:1px solid #ffc9c3;
}

.pa-manage-grid{
  display:grid;
  grid-template-columns:minmax(300px, .9fr) minmax(0, 1.5fr);
  gap:18px;
  align-items:start;
}

.pa-manage-card{
  overflow:hidden;
  border:1px solid #e1e8f1;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 35px rgba(15,23,42,.06);
}

.pa-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:21px 22px 16px;
  border-bottom:1px solid #edf1f5;
}

.pa-card-head h2{
  margin:0;
  color:#1b263c;
  font-size:18px;
  letter-spacing:-.4px;
}

.pa-card-head p{
  margin:6px 0 0;
  color:#77859a;
  font-size:13px;
  line-height:1.45;
}

.pa-text-link{
  color:var(--pa-primary);
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.pa-form{
  padding:20px 22px 22px;
}

.pa-form label{
  display:block;
  margin-bottom:15px;
}

.pa-form label > span{
  display:block;
  margin-bottom:7px;
  color:#344054;
  font-size:13px;
  font-weight:800;
}

.pa-form input,
.pa-form select{
  width:100%;
  height:46px;
  padding:0 13px;
  border:1px solid #d9e3ee;
  border-radius:12px;
  outline:none;
  background:#fff;
  color:#1f2937;
  font-size:14px;
}

.pa-form input:focus,
.pa-form select:focus{
  border-color:var(--pa-primary);
  box-shadow:0 0 0 3px rgba(21,101,216,.12);
}

.pa-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.pa-submit-button{
  width:100%;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:4px;
  border:0;
  border-radius:13px;
  background:var(--pa-primary);
  color:#fff;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
}

.pa-table-wrap{
  overflow-x:auto;
}

.pa-table{
  width:100%;
  border-collapse:collapse;
}

.pa-table th{
  padding:13px 18px;
  border-bottom:1px solid #edf1f5;
  color:#8a98ab;
  background:#fbfcfe;
  text-align:left;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
}

.pa-table td{
  padding:15px 18px;
  border-bottom:1px solid #edf1f5;
  color:#4b596d;
  font-size:13px;
}

.pa-table tbody tr:last-child td{
  border-bottom:0;
}

.pa-table td strong{
  display:block;
  color:#1f2b40;
  font-size:14px;
}

.pa-table td small{
  display:block;
  margin-top:4px;
  color:#94a3b8;
  font-size:11px;
  font-weight:700;
}

.pa-status{
  display:inline-flex;
  align-items:center;
  min-height:27px;
  padding:0 10px;
  border-radius:99px;
  font-size:11px;
  font-weight:900;
}

.pa-status.is-active{
  color:#057a46;
  background:#e8fff2;
}

.pa-status.is-passive{
  color:#8b5f00;
  background:#fff8dd;
}

.pa-table-actions{
  display:flex;
  justify-content:flex-end;
  gap:7px;
}

.pa-table-actions form{
  margin:0;
}

.pa-icon-button{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #d9e4ef;
  border-radius:10px;
  background:#fff;
  color:#526176;
  text-decoration:none;
  cursor:pointer;
}

.pa-icon-button-danger{
  color:#dc3d31;
  background:#fff9f8;
  border-color:#ffd2cd;
}

.pa-empty-state{
  min-height:290px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:30px;
  color:#718096;
  text-align:center;
}

.pa-empty-icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
  border-radius:17px;
  background:#edf5ff;
  color:var(--pa-primary);
  font-size:22px;
}

.pa-empty-state strong{
  color:#25324a;
  font-size:15px;
}

.pa-empty-state span{
  margin-top:6px;
  font-size:13px;
}

@media(max-width:1000px){
  .pa-manage-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:620px){
  .pa-page-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .pa-form-row{
    grid-template-columns:1fr;
    gap:0;
  }

  .pa-card-head,
  .pa-form{
    padding-left:16px;
    padding-right:16px;
  }

  .pa-table th,
  .pa-table td{
    padding-left:14px;
    padding-right:14px;
  }
}