*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Poppins',sans-serif;
  min-height:100vh;
  color:#15294a;
  background:
    radial-gradient(circle at top left, rgba(21,41,74,0.10), transparent 28%),
    linear-gradient(135deg,#f3f6fb 0%,#eef2f7 100%);
}

.dashboard-layout{
  width:100%;
  min-height:100vh;
  display:block !important;
  background:transparent;
  overflow-x:hidden;
}

.main-content{
  margin-left:280px !important;
  width:calc(100% - 280px) !important;
  min-height:100vh;
  padding:22px !important;
  overflow-x:hidden;
  transition:0.3s ease;
}

.dashboard-main{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  overflow:hidden;
}

/* STATS */

.dashboard-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-bottom:16px;
}

.stat-card{
  background:#ffffff;
  border:1px solid rgba(107,114,128,0.16);
  box-shadow:0 10px 26px rgba(21,41,74,0.06);
  padding:16px;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  overflow:hidden;
}

.stat-card::after{
  content:"";
  position:absolute;
  right:-35px;
  top:-35px;
  width:80px;
  height:80px;
  border-radius:50%;
  background:rgba(21,41,74,0.05);
}

.stat-icon{
  width:42px;
  height:42px;
  min-width:42px;
  background:#f1f5f9;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  position:relative;
  z-index:2;
}

.stat-content{
  position:relative;
  z-index:2;
}

.stat-content strong{
  display:block;
  font-size:22px;
  line-height:1;
  color:#15294a;
  font-weight:800;
  margin-bottom:5px;
}

.stat-content span{
  display:block;
  font-size:11px;
  color:#6b7280;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.35px;
}

/* SEARCH CARD */

.dashboard-filter-card{
  width:100%;
  background:#ffffff;
  border:1px solid rgba(107,114,128,0.16);
  box-shadow:0 12px 32px rgba(21,41,74,0.08);
  padding:18px;
  margin-bottom:16px;
}

.dashboard-filter-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.dashboard-filter-title{
  display:flex;
  align-items:center;
  gap:12px;
}

.dashboard-filter-icon{
  width:42px;
  height:42px;
  min-width:42px;
  background:#15294a;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.dashboard-filter-title h3{
  font-size:17px;
  color:#15294a;
  font-weight:800;
  margin-bottom:3px;
}

.dashboard-filter-title p{
  font-size:11.8px;
  color:#6b7280;
  line-height:1.5;
}

/* TABS */

.dashboard-tabs{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  background:#f8fafc;
  border:1px solid rgba(107,114,128,0.14);
  padding:8px;
  margin-bottom:16px;
}

.dashboard-tab-btn{
  min-height:44px;
  border:1px solid transparent;
  background:transparent;
  color:#15294a;
  font-family:'Poppins',sans-serif;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:0.25s ease;
}

.dashboard-tab-btn i{
  font-size:15px;
}

.dashboard-tab-btn:hover{
  background:#ffffff;
  border-color:rgba(21,41,74,0.12);
}

.dashboard-tab-btn.active{
  background:#15294a;
  color:#ffffff;
  border-color:#15294a;
  box-shadow:0 10px 22px rgba(21,41,74,0.18);
}

/* SMALLER SEARCH BAR */

.dashboard-search-panel{
  display:flex;
  align-items:flex-end;
  gap:10px;
  max-width:660px;
}

.dashboard-filter-group{
  width:100%;
  max-width:500px;
}

.dashboard-filter-group label{
  display:block;
  font-size:10px;
  letter-spacing:0.4px;
  text-transform:uppercase;
  color:#6b7280;
  font-weight:800;
  margin-bottom:7px;
}

.dashboard-search-wrap{
  width:100%;
  height:42px;
  background:#f8fafc;
  border:1px solid rgba(107,114,128,0.22);
  color:#15294a;
  transition:0.25s ease;
  display:flex;
  align-items:center;
  padding:0 7px 0 13px;
  gap:8px;
}

.dashboard-search-wrap:focus-within{
  background:#ffffff;
  border-color:#15294a;
  box-shadow:0 0 0 4px rgba(21,41,74,0.09);
}

.dashboard-search-wrap i{
  color:#6b7280;
  font-size:14px;
}

.dashboard-search-wrap input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  color:#15294a;
  font-size:12.5px;
  min-width:0;
  font-family:'Poppins',sans-serif;
}

.dashboard-search-wrap input::placeholder{
  color:#8b95a5;
}

.dashboard-search-btn{
  width:30px;
  height:30px;
  min-width:30px;
  border:none;
  background:#15294a;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.25s ease;
}

.dashboard-search-btn:hover{
  background:#6b7280;
  transform:translateX(2px);
}

.dashboard-filter-actions{
  display:flex;
  gap:8px;
}

.dashboard-filter-reset{
  height:42px;
  border:none;
  padding:0 16px;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
  transition:0.25s ease;
  text-transform:uppercase;
  font-family:'Poppins',sans-serif;
  white-space:nowrap;
  background:#eef2f7;
  color:#15294a;
  border:1px solid rgba(107,114,128,0.18);
}

.dashboard-filter-reset:hover{
  background:#15294a;
  color:#ffffff;
}

/* PROMPT GRID */

.prompt-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.prompt-box{
  min-width:0;
  min-height:190px;
  background:#ffffff;
  padding:18px;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(107,114,128,0.16);
  box-shadow:0 12px 28px rgba(21,41,74,0.07);
  transition:0.28s ease;
}

.prompt-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#15294a,#6b7280);
}

.prompt-box::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  right:-60px;
  top:-60px;
  border-radius:50%;
  background:rgba(21,41,74,0.05);
  transition:0.28s ease;
}

.prompt-box:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 42px rgba(21,41,74,0.14);
  border-color:rgba(21,41,74,0.28);
}

.prompt-box:hover::after{
  background:rgba(21,41,74,0.08);
  transform:scale(1.15);
}

.prompt-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
  position:relative;
  z-index:2;
}

.prompt-icon{
  width:42px;
  height:42px;
  min-width:42px;
  background:#f1f5f9;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:0 8px 18px rgba(21,41,74,0.08);
  transition:0.28s ease;
}

.prompt-box:hover .prompt-icon{
  background:#15294a;
  color:#ffffff;
  transform:translateY(-2px);
}

.prompt-badge{
  width:max-content;
  max-width:130px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 9px;
  background:#f8fafc;
  color:#15294a;
  font-size:9.5px;
  font-weight:800;
  text-transform:uppercase;
  position:relative;
  z-index:2;
  border:1px solid rgba(107,114,128,0.16);
}

.prompt-box h3{
  font-size:15px;
  line-height:1.32;
  color:#15294a;
  font-weight:800;
  margin-bottom:8px;
  position:relative;
  z-index:2;
  letter-spacing:-0.25px;
}

.prompt-box p{
  color:#6b7280;
  font-size:11.5px;
  line-height:1.6;
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.prompt-link{
  margin-top:auto;
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:#15294a;
  color:#ffffff;
  text-decoration:none;
  padding:10px 12px;
  font-size:10px;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:0.35px;
  transition:0.25s ease;
  position:relative;
  z-index:2;
  box-shadow:0 10px 20px rgba(21,41,74,0.14);
}

.prompt-link:hover{
  transform:translateY(-2px);
  background:#6b7280;
  box-shadow:0 12px 24px rgba(21,41,74,0.18);
}

.prompt-link i{
  font-size:11px;
}

.prompt-box.hide{
  display:none;
}

.no-result{
  display:none;
  grid-column:1 / -1;
  background:#ffffff;
  padding:28px 20px;
  text-align:center;
  color:#15294a;
  font-size:13px;
  font-weight:800;
  box-shadow:0 12px 28px rgba(21,41,74,0.07);
  border:1px solid rgba(107,114,128,0.16);
}

.no-result.show{
  display:block;
}

.mobile-filter-toggle{
  display:none;
  position:fixed;
  right:16px;
  bottom:16px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#15294a;
  color:#ffffff;
  font-size:18px;
  z-index:10000;
  box-shadow:0 12px 26px rgba(21,41,74,0.24);
  cursor:pointer;
}

.mobile-filter-toggle:hover{
  background:#6b7280;
}

/* RESPONSIVE */

@media(max-width:1200px){
  .main-content{
    padding:18px !important;
  }

  .dashboard-main{
    max-width:100%;
  }

  .prompt-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:991px){
  .sidebar,
  #sidebar{
    position:fixed;
    top:0;
    left:0;
    width:280px;
    max-width:82%;
    height:100vh;
    z-index:9999;
    transform:translateX(-100%);
    transition:0.3s ease;
    overflow-y:auto;
  }

  .sidebar.show,
  #sidebar.show{
    transform:translateX(0);
  }

  .main-content{
    width:100% !important;
    margin-left:0 !important;
    padding:16px 14px 78px !important;
  }

  .dashboard-stats{
    grid-template-columns:1fr;
  }

  .prompt-grid{
    grid-template-columns:1fr 1fr;
  }

  .mobile-filter-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:768px){
  .main-content{
    padding:14px 12px 78px !important;
  }

  .dashboard-filter-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .dashboard-tabs{
    grid-template-columns:1fr;
  }

  .dashboard-search-panel{
    width:100%;
    max-width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .dashboard-filter-group{
    max-width:100%;
  }

  .dashboard-filter-actions{
    width:100%;
  }

  .dashboard-filter-reset{
    width:100%;
  }

  .prompt-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .prompt-box{
    min-height:auto;
    padding:17px;
  }
}

@media(max-width:480px){
  .main-content{
    padding:12px 10px 76px !important;
  }

  .dashboard-filter-card{
    padding:15px;
  }

  .dashboard-filter-title{
    align-items:flex-start;
  }

  .dashboard-filter-icon{
    width:36px;
    height:36px;
    min-width:36px;
  }

  .dashboard-filter-title h3{
    font-size:15px;
  }

  .dashboard-filter-title p{
    font-size:11px;
  }

  .prompt-icon{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .mobile-filter-toggle{
    width:46px;
    height:46px;
    right:14px;
    bottom:14px;
  }
}

@media(max-width:360px){
  .prompt-box h3{
    font-size:14px;
  }

  .prompt-box p{
    font-size:11px;
  }
}


/* =====================================================
   PAGE: LOGIN
   File: login.php
===================================================== */

.login-page{
    width:100%;
    min-height:100vh;
    min-height:100dvh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(16px,3vw,32px);
    background:
        radial-gradient(circle at top left, rgba(21,41,74,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(200,200,200,0.40), transparent 32%),
        linear-gradient(135deg,#f7f8fa 0%,#eef0f4 100%);
}

.login-container{
    width:100%;
    max-width:1080px;
    min-height:640px;
    background:#ffffff;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(360px,0.95fr);
    box-shadow:0 30px 90px rgba(21,41,74,0.22);
    border:1px solid rgba(200,200,200,0.85);
    overflow:hidden;
}

.login-visual{
    position:relative;
    min-height:640px;
    padding:clamp(32px,4vw,42px);
    background-image:url("../../images/login-bg.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:28px;
    overflow:hidden;
}

.login-visual::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(21,41,74,0.78),
        rgba(21,41,74,0.48)
    );
    z-index:1;
}

.login-visual::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    bottom:-120px;
    left:-110px;
    background:rgba(255,255,255,0.10);
    z-index:1;
}

.login-brand-logo{
    width:94px;
    height:94px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
    flex-shrink:0;
}

.login-brand-logo img{
    width:68px;
    object-fit:contain;
}

.login-visual-content{
    position:relative;
    z-index:2;
    max-width:470px;
}

.login-visual-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffff;
    padding:10px 14px;
    font-size:12px;
    font-weight:700;
    margin-bottom:22px;
    backdrop-filter:blur(10px);
}

.login-visual-content h2{
    font-size:clamp(32px,3.6vw,42px);
    line-height:1.12;
    font-weight:800;
    color:#ffffff;
    letter-spacing:-1.2px;
    margin-bottom:16px;
}

.login-visual-content p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.78);
    max-width:430px;
}

.login-visual-stats{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.login-visual-stat{
    padding:16px 14px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);
    min-width:0;
}

.login-visual-stat strong{
    display:block;
    font-size:20px;
    color:#ffffff;
    margin-bottom:4px;
}

.login-visual-stat span{
    display:block;
    font-size:11px;
    line-height:1.4;
    color:rgba(255,255,255,0.72);
    word-break:break-word;
}

.login-form-area{
    min-height:640px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(34px,4vw,48px) clamp(28px,3.6vw,44px);
}

.login-card{
    width:100%;
    max-width:390px;
    text-align:left;
}

.login-mobile-logo{
    display:none;
    width:74px;
    height:74px;
    background:#ffffff;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    border:1px solid rgba(200,200,200,0.85);
    box-shadow:0 14px 34px rgba(21,41,74,0.12);
}

.login-mobile-logo img{
    width:54px;
    object-fit:contain;
}

.login-icon-box{
    width:54px;
    height:54px;
    background:#eef3fb;
    color:#15294a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
    font-weight:800;
}

.login-card h1{
    font-size:clamp(30px,3.2vw,36px);
    line-height:1.15;
    font-weight:800;
    color:#15294a;
    margin-bottom:10px;
    letter-spacing:-0.8px;
}

.login-text{
    font-size:13.5px;
    color:#6b7280;
    line-height:1.7;
    margin-bottom:24px;
}

.login-error-msg{
    background:rgba(200,200,200,0.28);
    color:#15294a;
    padding:12px 14px;
    margin-bottom:16px;
    font-size:12.5px;
    font-weight:600;
    text-align:left;
    border-left:4px solid #15294a;
    line-height:1.5;
    word-break:break-word;
}

.login-success-msg{
    background:#ecfdf3;
    color:#166534;
    border-left:4px solid #16a34a;
}

.login-input-group{
    text-align:left;
    margin-bottom:17px;
}

.login-input-group label{
    display:block;
    font-size:12.5px;
    font-weight:700;
    color:#15294a;
    margin-bottom:8px;
}

.login-input-group label.required::after{
    content:" *";
    color:#dc2626;
}

.login-input-group input{
    width:100%;
    height:50px;
    border:1px solid rgba(200,200,200,0.95);
    padding:0 15px;
    font-size:13px;
    outline:none;
    color:#15294a;
    background:#f7f8fa;
    transition:0.25s ease;
    min-width:0;
}

.login-input-group input:focus{
    border-color:#15294a;
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(21,41,74,0.10);
}

.login-input-group input::placeholder{
    color:#8b8f97;
}

.login-btn{
    width:100%;
    height:52px;
    border:none;
    background:#15294a;
    color:#ffffff;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    transition:0.25s ease;
    margin-top:4px;
    box-shadow:0 14px 32px rgba(21,41,74,0.22);
}

.login-btn:hover{
    background:#c8c8c8;
    color:#15294a;
    transform:translateY(-2px);
}

.login-request-password,
.login-back-link-row{
    margin-top:18px;
    text-align:center;
}

.login-request-password a,
.login-back-link-row a{
    font-size:12.5px;
    font-weight:700;
    color:#15294a;
    text-decoration:none;
    transition:0.25s ease;
}

.login-request-password a:hover,
.login-back-link-row a:hover{
    color:#6b7280;
    text-decoration:underline;
}

.login-reset-note{
    background:#f8fafc;
    border:1px solid rgba(200,200,200,0.85);
    padding:12px 14px;
    margin-bottom:18px;
    font-size:12px;
    line-height:1.6;
    color:#667085;
    font-weight:600;
    word-break:break-word;
}

.login-reset-note strong{
    color:#15294a;
}

@media(max-width:1180px){
    .login-container{
        max-width:980px;
        grid-template-columns:minmax(0,1fr) minmax(340px,0.9fr);
    }

    .login-visual,
    .login-form-area{
        min-height:600px;
    }
}

@media(max-width:991px){
    .login-page{
        padding:24px;
        align-items:center;
    }

    .login-container{
        grid-template-columns:1fr;
        max-width:520px;
        min-height:auto;
    }

    .login-visual{
        display:none;
    }

    .login-form-area{
        min-height:auto;
        padding:40px 32px;
    }

    .login-mobile-logo{
        display:flex;
    }

    .login-card{
        max-width:100%;
        text-align:center;
    }

    .login-icon-box{
        margin-left:auto;
        margin-right:auto;
    }

    .login-input-group,
    .login-reset-note{
        text-align:left;
    }
}

@media(max-width:576px){
    .login-page{
        padding:14px;
        align-items:flex-start;
    }

    .login-container{
        max-width:100%;
        box-shadow:0 18px 46px rgba(21,41,74,0.16);
    }

    .login-form-area{
        padding:32px 20px;
    }

    .login-mobile-logo{
        width:68px;
        height:68px;
        margin-bottom:16px;
    }

    .login-mobile-logo img{
        width:50px;
    }

    .login-card h1{
        font-size:28px;
    }

    .login-text{
        font-size:12.5px;
        margin-bottom:22px;
    }

    .login-input-group input{
        height:48px;
        font-size:12.5px;
        padding:0 13px;
    }

    .login-btn{
        height:50px;
        font-size:13.5px;
    }
}

@media(max-width:380px){
    .login-page{
        padding:10px;
    }

    .login-form-area{
        padding:28px 16px;
    }

    .login-card h1{
        font-size:25px;
    }

    .login-text{
        font-size:12px;
    }

    .login-input-group label{
        font-size:12px;
    }

    .login-input-group input,
    .login-btn{
        height:46px;
    }
}



/* =====================================================
   PAGE: USER RESET PASSWORD
   File: user-reset-password.php
===================================================== */

.user-reset-page{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:
    radial-gradient(circle at top left, rgba(21,41,74,0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(107,114,128,0.18), transparent 34%),
    linear-gradient(135deg,#f7f9fc,#eef3f9);
  color:#15294a;
}

.user-reset-shell{
  width:100%;
  max-width:980px;
  min-height:590px;
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  background:#ffffff;
  border:1px solid rgba(226,232,240,0.95);
  box-shadow:0 28px 80px rgba(21,41,74,0.18);
  overflow:hidden;
}

.user-reset-visual{
  position:relative;
  background:linear-gradient(135deg,#15294a,#0e1d35);
  padding:42px;
  color:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.user-reset-visual::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  right:-120px;
  top:-100px;
}

.user-reset-visual::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  left:-80px;
  bottom:-80px;
}

.user-reset-brand-box{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:12px;
}

.user-reset-brand-mark{
  width:48px;
  height:48px;
  min-width:48px;
  background:#ffffff;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  box-shadow:0 16px 34px rgba(0,0,0,0.18);
}

.user-reset-brand-text strong{
  display:block;
  color:#ffffff;
  font-size:16px;
  font-weight:800;
  line-height:1.2;
}

.user-reset-brand-text span{
  display:block;
  color:rgba(255,255,255,0.72);
  font-size:11.5px;
  font-weight:600;
  margin-top:3px;
}

.user-reset-visual-content{
  position:relative;
  z-index:2;
}

.user-reset-visual-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#ffffff;
  padding:9px 13px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.4px;
  margin-bottom:18px;
}

.user-reset-visual-content h2{
  font-size:38px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-1.1px;
  margin-bottom:16px;
  color:#ffffff;
}

.user-reset-visual-content p{
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,0.76);
  max-width:390px;
}

.user-reset-visual-footer{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.user-reset-mini-card{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  padding:14px;
}

.user-reset-mini-card i{
  display:block;
  font-size:18px;
  margin-bottom:8px;
  color:#ffffff;
}

.user-reset-mini-card span{
  display:block;
  font-size:11.5px;
  line-height:1.45;
  color:rgba(255,255,255,0.78);
  font-weight:600;
}

.user-reset-form-area{
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 44px;
}

.user-reset-card{
  width:100%;
  max-width:430px;
}

.user-reset-mobile-brand{
  display:none;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  background:#15294a;
  color:#ffffff;
  font-size:20px;
  font-weight:800;
  margin:0 auto 18px;
}

.user-reset-icon-circle{
  width:54px;
  height:54px;
  background:#eef3fb;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
}

.user-reset-card h1{
  font-size:34px;
  line-height:1.15;
  font-weight:800;
  color:#15294a;
  letter-spacing:-0.8px;
  margin-bottom:10px;
}

.user-reset-card p{
  font-size:13.5px;
  line-height:1.7;
  color:#667085;
  margin-bottom:22px;
}

.user-reset-email-note{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  padding:12px 14px;
  margin-bottom:18px;
  font-size:12px;
  line-height:1.6;
  color:#667085;
  font-weight:600;
  word-break:break-word;
}

.user-reset-email-note strong{
  color:#15294a;
}

.user-reset-error-msg{
  background:#fff1f1;
  color:#b91c1c;
  padding:12px 14px;
  border-left:4px solid #dc2626;
  margin-bottom:16px;
  font-size:12.5px;
  font-weight:700;
  line-height:1.45;
}

.user-reset-input-group{
  margin-bottom:17px;
}

.user-reset-input-group label{
  display:block;
  margin-bottom:8px;
  color:#15294a;
  font-size:12.5px;
  font-weight:800;
}

.user-reset-input-group label::after{
  content:" *";
  color:#dc2626;
  font-weight:900;
}

.user-reset-input-wrap{
  position:relative;
}

.user-reset-input-wrap > i{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#7b8798;
  font-size:15px;
  pointer-events:none;
}

.user-reset-input-group input{
  width:100%;
  height:48px;
  border:1px solid #cfd6e3;
  background:#f8fafc;
  padding:0 46px 0 42px;
  font-size:13px;
  outline:none;
  font-family:'Poppins',sans-serif;
  color:#15294a;
  transition:0.25s ease;
}

.user-reset-input-group input::placeholder{
  color:#9aa3b2;
}

.user-reset-input-group input:focus{
  border-color:#15294a;
  background:#ffffff;
  box-shadow:0 0 0 3px rgba(21,41,74,0.08);
}

.user-reset-toggle-pass{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  border:none;
  background:transparent;
  color:#667085;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

.user-reset-toggle-pass:hover{
  color:#15294a;
}

.user-reset-btn{
  width:100%;
  height:48px;
  border:none;
  background:#15294a;
  color:#ffffff;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  font-family:'Poppins',sans-serif;
  transition:0.25s ease;
  margin-top:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.user-reset-btn:hover{
  background:#0e1d35;
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(21,41,74,0.18);
}

.user-reset-back-login-row{
  text-align:center;
  margin-top:18px;
}

.user-reset-back-login-row a{
  color:#15294a;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:7px;
  transition:0.25s ease;
}

.user-reset-back-login-row a:hover{
  color:#0e1d35;
  text-decoration:underline;
}

.user-reset-help-note{
  margin-top:18px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  padding:12px 14px;
  font-size:11.8px;
  line-height:1.6;
  color:#667085;
  font-weight:600;
}

.user-reset-help-note strong{
  color:#15294a;
}

@media(max-width:991px){
  .user-reset-page{
    padding:22px;
  }

  .user-reset-shell{
    grid-template-columns:1fr;
    max-width:520px;
    min-height:auto;
  }

  .user-reset-visual{
    display:none;
  }

  .user-reset-form-area{
    padding:42px 34px;
  }

  .user-reset-mobile-brand{
    display:flex;
  }

  .user-reset-icon-circle{
    margin-left:auto;
    margin-right:auto;
  }

  .user-reset-card{
    text-align:center;
  }

  .user-reset-input-group,
  .user-reset-email-note,
  .user-reset-help-note{
    text-align:left;
  }
}

@media(max-width:576px){
  .user-reset-page{
    padding:16px;
    align-items:flex-start;
    padding-top:44px;
  }

  .user-reset-form-area{
    padding:34px 22px;
  }

  .user-reset-card h1{
    font-size:28px;
  }

  .user-reset-card p{
    font-size:12.8px;
    margin-bottom:20px;
  }

  .user-reset-input-group input,
  .user-reset-btn{
    height:46px;
  }
}

@media(max-width:360px){
  .user-reset-page{
    padding:12px;
    padding-top:34px;
  }

  .user-reset-form-area{
    padding:28px 18px;
  }

  .user-reset-card h1{
    font-size:25px;
  }
}







/* =====================================================
   PAGE: USER SEARCH HISTORY
   File: user-search.php
===================================================== */

.user-history-layout{
  width:100%;
  min-height:100vh;
  display:flex;
  background:linear-gradient(135deg,rgba(21,41,74,0.06),rgba(107,114,128,0.10));
}

.user-history-main-content{
  width:calc(100% - 280px);
  margin-left:280px;
  min-height:100vh;
  padding:26px 28px;
}

.user-history-page-wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
}

.user-history-mobile-menu-btn{
  display:none;
  width:42px;
  height:42px;
  border:none;
  background:#15294a;
  color:#ffffff;
  font-size:22px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  margin-bottom:14px;
  box-shadow:0 12px 28px rgba(21,41,74,0.22);
  transition:0.25s ease;
}

.user-history-mobile-menu-btn:hover{
  background:#6b7280;
  transform:translateY(-1px);
}

.user-history-page-title{
  background:#15294a;
  color:#ffffff;
  padding:26px 28px;
  margin-bottom:16px;
  box-shadow:0 18px 44px rgba(21,41,74,0.18);
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
}

.user-history-page-title::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  right:-80px;
  top:-100px;
  background:rgba(255,255,255,0.08);
}

.user-history-page-title::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  left:-70px;
  bottom:-90px;
  background:rgba(107,114,128,0.28);
}

.user-history-page-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  position:relative;
  z-index:2;
}

.user-history-page-title h1{
  font-size:28px;
  font-weight:800;
  margin-bottom:6px;
  line-height:1.2;
  letter-spacing:-0.5px;
  color:#ffffff;
}

.user-history-page-title p{
  font-size:13px;
  color:rgba(255,255,255,0.82);
  line-height:1.6;
  max-width:650px;
}

.user-history-top-filter{
  width:280px;
  flex-shrink:0;
}

.user-history-filter-select{
  width:100%;
  height:44px;
  border:1px solid rgba(255,255,255,0.22);
  padding:0 14px;
  font-size:12px;
  font-weight:800;
  color:#15294a;
  background:#ffffff;
  font-family:'Poppins',sans-serif;
  outline:none;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
  cursor:pointer;
}

.user-history-filter-select:focus{
  border-color:#6b7280;
  box-shadow:0 0 0 4px rgba(255,255,255,0.12);
}

.user-history-filter-select option{
  color:#15294a;
  background:#ffffff;
}

.user-history-search-box{
  width:50%;
  background:#ffffff;
  padding:10px;
  margin-bottom:16px;
  box-shadow:0 12px 30px rgba(21,41,74,0.08);
  border:1px solid rgba(107,114,128,0.18);
}

.user-history-search-form{
  display:flex;
  align-items:center;
  gap:8px;
}

.user-history-search-form input{
  flex:1;
  max-width:520px;
  height:40px;
  border:1px solid rgba(107,114,128,0.22);
  padding:0 14px;
  font-size:12.5px;
  font-family:'Poppins',sans-serif;
  outline:none;
  color:#15294a;
  background:rgba(107,114,128,0.06);
}

.user-history-search-form input:focus{
  border-color:#15294a;
  background:#ffffff;
  box-shadow:0 0 0 3px rgba(21,41,74,0.10);
}

.user-history-search-form input::placeholder{
  color:#6b7280;
}

.user-history-search-form button,
.user-history-search-form a{
  height:40px;
  border:none;
  padding:0 17px;
  background:#15294a;
  color:#ffffff;
  font-size:11.5px;
  font-weight:800;
  font-family:'Poppins',sans-serif;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:0.25s ease;
  white-space:nowrap;
}

.user-history-search-form button:hover{
  background:#6b7280;
  transform:translateY(-1px);
}

.user-history-search-form a{
  background:#6b7280;
}

.user-history-search-form a:hover{
  background:#15294a;
  transform:translateY(-1px);
}

.user-history-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.user-history-card{
  background:#ffffff;
  padding:14px 16px;
  box-shadow:0 10px 28px rgba(21,41,74,0.08);
  border:1px solid rgba(107,114,128,0.18);
  position:relative;
  overflow:hidden;
  transition:0.25s ease;
}

.user-history-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(21,41,74,0.13);
}

.user-history-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#15294a,#6b7280);
}

.user-history-row{
  display:grid;
  grid-template-columns:36px minmax(260px,1fr) 120px 120px;
  gap:12px;
  align-items:center;
}

.user-history-meta h3{
  font-size:13.5px;
  font-weight:800;
  color:#15294a;
  margin-bottom:3px;
  line-height:1.35;
}

.user-history-meta span{
  font-size:10.5px;
  color:#6b7280;
  font-weight:600;
}

.user-history-action{
  display:flex;
  align-items:center;
  justify-content:center;
}

.user-history-pdf-icon-btn{
  width:38px;
  height:38px;
  border:none;
  background:#15294a;
  color:#ffffff;
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(21,41,74,0.22);
  transition:0.25s ease;
}

.user-history-pdf-icon-btn:hover{
  background:#6b7280;
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(21,41,74,0.28);
}

.user-history-pdf-icon-btn.disabled{
  background:rgba(107,114,128,0.35);
  color:#ffffff;
  cursor:not-allowed;
  opacity:0.70;
  box-shadow:none;
  pointer-events:none;
}

.user-history-action-label{
  display:block;
  text-align:center;
  font-size:10px;
  color:#6b7280;
  font-weight:800;
  margin-top:5px;
}

.user-history-empty-box{
  background:#ffffff;
  padding:24px;
  text-align:center;
  color:#6b7280;
  font-size:13px;
  font-weight:700;
  box-shadow:0 12px 32px rgba(21,41,74,0.08);
  border:1px solid rgba(107,114,128,0.18);
}

.user-history-pagination{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-top:18px;
  flex-wrap:wrap;
}

.user-history-pagination a{
  min-width:34px;
  height:34px;
  background:#ffffff;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:11.5px;
  font-weight:800;
  box-shadow:0 7px 18px rgba(21,41,74,0.09);
  border:1px solid rgba(107,114,128,0.18);
  transition:0.25s ease;
}

.user-history-pagination a:hover,
.user-history-pagination a.active{
  background:#15294a;
  color:#ffffff;
  border-color:#15294a;
}

.user-history-bulk-action-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:#ffffff;
  padding:12px 14px;
  margin-bottom:12px;
  border:1px solid rgba(107,114,128,0.18);
  box-shadow:0 10px 28px rgba(21,41,74,0.08);
}

.user-history-bulk-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  color:#15294a;
}

.user-history-bulk-left input,
.user-history-check input{
  width:16px;
  height:16px;
  accent-color:#15294a;
  cursor:pointer;
}

.user-history-bulk-delete-btn{
  height:38px;
  border:none;
  background:#dc2626;
  color:#ffffff;
  padding:0 15px;
  font-size:11.5px;
  font-weight:800;
  font-family:'Poppins',sans-serif;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  transition:0.25s ease;
}

.user-history-bulk-delete-btn:hover{
  background:#991b1b;
  transform:translateY(-1px);
}

.user-history-check{
  display:flex;
  align-items:center;
  justify-content:center;
}

.user-history-delete-message{
  background:#ffffff;
  border-left:4px solid #16a34a;
  padding:12px 14px;
  margin-bottom:12px;
  font-size:12.5px;
  font-weight:700;
  color:#15294a;
  box-shadow:0 10px 28px rgba(21,41,74,0.08);
}

@media(max-width:991px){
  .user-history-mobile-menu-btn{
    display:flex;
  }

  .user-history-main-content{
    width:100%;
    margin-left:0;
    padding:18px;
  }

  .user-history-page-title-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .user-history-top-filter{
    width:100%;
  }

  .user-history-row{
    grid-template-columns:1fr;
    gap:12px;
  }

  .user-history-action{
    justify-content:flex-start;
  }

  .user-history-action-label{
    text-align:left;
  }

  .user-history-search-box{
    width:100%;
  }

  .user-history-search-form input{
    max-width:none;
  }

  .user-history-check{
    justify-content:flex-start;
  }

  .user-history-bulk-action-bar{
    flex-direction:column;
    align-items:flex-start;
  }

  .user-history-bulk-delete-btn{
    width:100%;
  }
}

@media(max-width:768px){
  .user-history-main-content{
    padding:16px;
  }

  .user-history-page-title{
    padding:22px 20px;
  }

  .user-history-page-title h1{
    font-size:23px;
  }

  .user-history-page-title p{
    font-size:12.5px;
  }

  .user-history-search-form{
    flex-direction:column;
    align-items:stretch;
  }

  .user-history-search-form button,
  .user-history-search-form a{
    width:100%;
  }
}





/* =====================================================
   COMMON COMPONENT: USER SIDEBAR
   File: user-sidebar.php
===================================================== */

.user-sidebar{
  width:260px;
  min-height:100vh;
  background:#15294a;
  padding:16px 14px;
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  overflow-y:auto;
  z-index:100;
  border-right:1px solid rgba(255,255,255,0.12);
  font-family:'Poppins',sans-serif;
  box-shadow:10px 0 28px rgba(21,41,74,0.18);
}

.user-sidebar *{
  box-sizing:border-box;
}

.user-sidebar::-webkit-scrollbar{
  width:5px;
}

.user-sidebar::-webkit-scrollbar-track{
  background:rgba(255,255,255,0.08);
}

.user-sidebar::-webkit-scrollbar-thumb{
  background:#6b7280;
}

.user-sidebar-profile-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  padding:16px 12px;
  text-align:center;
  margin-bottom:14px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
}

.user-sidebar-profile-avatar{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 10px;
  border:2px solid rgba(255,255,255,0.50);
  box-shadow:0 10px 22px rgba(0,0,0,0.16);
  overflow:hidden;
  background:linear-gradient(135deg,#6b7280,#15294a);
  display:flex;
  align-items:center;
  justify-content:center;
}

.user-sidebar-profile-initial{
  color:#ffffff;
  font-size:22px;
  font-weight:800;
}

.user-sidebar-profile-card h3{
  color:#ffffff;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  margin:0 0 4px;
  letter-spacing:0.35px;
  line-height:1.25;
}

.user-sidebar-profile-card p{
  color:rgba(255,255,255,0.72);
  font-size:10.8px;
  line-height:1.4;
  word-break:break-word;
  margin:0;
}

.user-sidebar-link{
  width:100%;
  min-height:42px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 12px;
  color:rgba(255,255,255,0.84) !important;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  font-size:11.8px;
  font-weight:800;
  margin-bottom:8px;
  transition:0.25s ease;
  text-transform:capitalize;
  text-decoration:none !important;
}

.user-sidebar-link i{
  width:16px;
  min-width:16px;
  font-size:14px;
  color:rgba(255,255,255,0.90);
  transition:0.25s ease;
}

.user-sidebar-link:hover,
.user-sidebar-link.active{
  background:#ffffff;
  color:#15294a !important;
  border-color:#ffffff;
  transform:translateX(3px);
  box-shadow:0 9px 20px rgba(0,0,0,0.14);
}

.user-sidebar-link:hover i,
.user-sidebar-link.active i{
  color:#15294a;
}

.user-sidebar-recent-searches{
  margin-top:14px;
  padding-bottom:14px;
}

.user-sidebar-recent-heading{
  color:rgba(255,255,255,0.72);
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:9px;
  letter-spacing:0.4px;
}

.user-sidebar-recent-item{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.10);
  padding:9px;
  display:flex;
  gap:8px;
  align-items:center;
  margin-bottom:8px;
  text-decoration:none !important;
  color:inherit !important;
  transition:0.25s ease;
}

.user-sidebar-recent-item:hover{
  background:#ffffff;
  transform:translateX(3px);
  box-shadow:0 9px 20px rgba(0,0,0,0.14);
}

.user-sidebar-recent-icon{
  width:30px;
  height:30px;
  min-width:30px;
  background:#ffffff;
  color:#15294a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  flex-shrink:0;
  transition:0.25s ease;
}

.user-sidebar-recent-item:hover .user-sidebar-recent-icon{
  background:#15294a;
  color:#ffffff;
}

.user-sidebar-recent-item h5{
  font-size:10.8px;
  color:#ffffff;
  margin:0 0 2px;
  line-height:1.25;
  transition:0.25s ease;
  font-weight:800;
}

.user-sidebar-recent-item p{
  color:rgba(255,255,255,0.64);
  font-size:9.8px;
  line-height:1.35;
  font-style:italic;
  margin:0;
  transition:0.25s ease;
}

.user-sidebar-recent-item:hover h5{
  color:#15294a;
}

.user-sidebar-recent-item:hover p{
  color:#6b7280;
}

.user-sidebar-show-all-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:6px;
  color:#ffffff !important;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  text-decoration:none !important;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,0.18);
  transition:0.25s ease;
}

.user-sidebar-show-all-link:hover{
  background:#ffffff;
  color:#15294a !important;
  border-color:#ffffff;
}

@media(max-width:991px){
  .user-sidebar{
    width:250px;
    transform:translateX(-100%);
    transition:0.3s ease;
  }

  .user-sidebar.show{
    transform:translateX(0);
  }
}

@media(max-width:576px){
  .user-sidebar{
    width:240px;
    padding:14px 12px;
  }

  .user-sidebar-profile-card{
    padding:14px 10px;
  }

  .user-sidebar-profile-avatar{
    width:52px;
    height:52px;
  }

  .user-sidebar-profile-initial{
    font-size:20px;
  }

  .user-sidebar-profile-card h3{
    font-size:12px;
  }

  .user-sidebar-profile-card p{
    font-size:10px;
  }

  .user-sidebar-link{
    min-height:40px;
    font-size:11px;
    padding:0 10px;
  }

  .user-sidebar-recent-item{
    padding:8px;
  }

  .user-sidebar-recent-icon{
    width:28px;
    height:28px;
    min-width:28px;
    font-size:12px;
  }
}



/* =====================================================
   FINAL DASHBOARD RESPONSIVE OVERRIDE
   File: dashboard.php
   Paste this at the VERY BOTTOM of assets/css/style.css
===================================================== */

.dashboard-layout{
  width:100% !important;
  min-height:100vh !important;
  display:block !important;
  overflow-x:hidden !important;
}

.main-content{
  margin-left:260px !important;
  width:calc(100% - 260px) !important;
  min-height:100vh !important;
  padding:22px !important;
  overflow-x:hidden !important;
}

.dashboard-main{
  width:100% !important;
  max-width:1180px !important;
  margin:0 auto !important;
  overflow:hidden !important;
}

.dashboard-stats{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:12px !important;
}

.dashboard-filter-card{
  width:100% !important;
  overflow:hidden !important;
}

.dashboard-search-panel{
  width:100% !important;
  max-width:660px !important;
  display:flex !important;
  align-items:flex-end !important;
  gap:10px !important;
}

.prompt-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
}

.prompt-box{
  min-width:0 !important;
}

/* Laptop */
@media(max-width:1200px){

  .main-content{
    padding:18px !important;
  }

  .dashboard-main{
    max-width:100% !important;
  }

  .prompt-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

/* Tablet */
@media(max-width:991px){

  .main-content{
    margin-left:0 !important;
    width:100% !important;
    padding:16px 14px 82px !important;
  }

  .dashboard-main{
    width:100% !important;
    max-width:100% !important;
  }

  .user-sidebar,
  .sidebar,
  #sidebar{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:260px !important;
    max-width:84% !important;
    height:100vh !important;
    z-index:9999 !important;
    transform:translateX(-100%) !important;
    transition:0.3s ease !important;
    overflow-y:auto !important;
  }

  .user-sidebar.show,
  .sidebar.show,
  #sidebar.show{
    transform:translateX(0) !important;
  }

  .dashboard-stats{
    grid-template-columns:1fr !important;
  }

  .prompt-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .mobile-filter-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
}

/* Mobile */
@media(max-width:768px){

  .main-content{
    padding:14px 12px 80px !important;
  }

  .dashboard-filter-head{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:10px !important;
  }

  .dashboard-filter-title{
    align-items:flex-start !important;
  }

  .dashboard-tabs{
    grid-template-columns:1fr !important;
  }

  .dashboard-search-panel{
    max-width:100% !important;
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .dashboard-filter-group{
    max-width:100% !important;
  }

  .dashboard-filter-actions{
    width:100% !important;
  }

  .dashboard-filter-reset{
    width:100% !important;
  }

  .prompt-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .prompt-box{
    min-height:auto !important;
    padding:17px !important;
  }
}

/* Small Mobile */
@media(max-width:576px){

  .main-content{
    padding:12px 10px 78px !important;
  }

  .dashboard-filter-card{
    padding:15px !important;
  }

  .dashboard-filter-icon{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    font-size:16px !important;
  }

  .dashboard-filter-title h3{
    font-size:15px !important;
  }

  .dashboard-filter-title p{
    font-size:11px !important;
  }

  .dashboard-tab-btn{
    min-height:42px !important;
    font-size:11.5px !important;
  }

  .dashboard-search-wrap{
    height:40px !important;
  }

  .prompt-icon{
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    font-size:16px !important;
  }

  .prompt-box h3{
    font-size:14.5px !important;
  }

  .prompt-box p{
    font-size:11px !important;
  }

  .prompt-link{
    padding:10px !important;
    font-size:9.8px !important;
  }

  .mobile-filter-toggle{
    width:46px !important;
    height:46px !important;
    right:14px !important;
    bottom:14px !important;
  }
}

/* Extra Small Mobile */
@media(max-width:380px){

  .dashboard-filter-card,
  .prompt-box{
    padding:13px !important;
  }

  .prompt-box h3{
    font-size:14px !important;
  }

  .prompt-box p{
    font-size:10.8px !important;
  }
}



/* =====================================================
   USER SIDEBAR MOBILE / TABLET TOGGLE FIX
   File: user-sidebar.php
===================================================== */

.user-sidebar-overlay{
  display:none;
}

.user-sidebar-close-btn{
  display:none;
}

/* Toggle button hidden on desktop */
.mobile-filter-toggle{
  display:none;
}

/* TABLET + MOBILE */
@media(max-width:991px){

  .sidebar,
  #sidebar{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:260px !important;
    max-width:84% !important;
    height:100vh !important;
    z-index:9999 !important;
    transform:translateX(-100%) !important;
    transition:0.3s ease !important;
    overflow-y:auto !important;
  }

  .sidebar.show,
  #sidebar.show{
    transform:translateX(0) !important;
  }

  .user-sidebar-overlay{
    display:block !important;
    position:fixed !important;
    inset:0 !important;
    background:rgba(15,23,42,0.55) !important;
    z-index:9998 !important;
    opacity:0 !important;
    visibility:hidden !important;
    transition:0.3s ease !important;
  }

  .user-sidebar-overlay.show{
    opacity:1 !important;
    visibility:visible !important;
  }

  .user-sidebar-close-btn{
    display:flex !important;
    width:34px !important;
    height:34px !important;
    border:none !important;
    background:rgba(255,255,255,0.12) !important;
    color:#ffffff !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:15px !important;
    margin-left:auto !important;
    margin-bottom:12px !important;
    cursor:pointer !important;
  }

  .user-sidebar-close-btn:hover{
    background:#ffffff !important;
    color:#15294a !important;
  }

  /* TOP RIGHT TOGGLE BUTTON */
  .mobile-filter-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    position:fixed !important;
    top:14px !important;
    right:14px !important;
    bottom:auto !important;
    width:46px !important;
    height:46px !important;
    border:none !important;
    border-radius:50% !important;
    background:#15294a !important;
    color:#ffffff !important;
    font-size:18px !important;
    z-index:10000 !important;
    box-shadow:0 12px 26px rgba(21,41,74,0.24) !important;
    cursor:pointer !important;
  }

  .mobile-filter-toggle:hover{
    background:#6b7280 !important;
  }
}

/* SMALL MOBILE */
@media(max-width:576px){

  .sidebar,
  #sidebar{
    width:240px !important;
    max-width:86% !important;
  }

  .mobile-filter-toggle{
    top:12px !important;
    right:12px !important;
    width:44px !important;
    height:44px !important;
    font-size:17px !important;
  }
}




/* =====================================================
   FINAL MOBILE RESPONSIVE FIX
   File: user-search.php
===================================================== */
.user-history-layout{
  width:100% !important;
  min-height:100vh !important;
  display:block !important;
  overflow-x:hidden !important;
}

.user-history-main-content{
  width:calc(100% - 260px) !important;
  margin-left:260px !important;
  min-height:100vh !important;
  padding:24px !important;
  overflow-x:hidden !important;
}

.user-history-page-wrap{
  width:100% !important;
  max-width:1120px !important;
  margin:0 auto !important;
}

.user-history-page-title{
  width:100% !important;
}

.user-history-page-title-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:20px !important;
}

.user-history-top-filter{
  width:280px !important;
  flex-shrink:0 !important;
}

.user-history-search-box{
  width:70% !important;
  max-width:760px !important;
}

.user-history-search-form{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}

.user-history-list{
  width:100% !important;
}

.user-history-card{
  width:100% !important;
}

.user-history-row{
  display:grid !important;
  grid-template-columns:36px minmax(260px,1fr) 120px 120px !important;
  gap:12px !important;
  align-items:center !important;
}

.user-history-meta{
  min-width:0 !important;
}

.user-history-meta h3,
.user-history-meta span{
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.user-history-mobile-menu-btn{
  display:none !important;
}

/* TABLET */
@media(max-width:991px){

  .user-history-main-content{
    width:100% !important;
    margin-left:0 !important;
    padding:76px 18px 24px !important;
  }

  .user-history-page-wrap{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
  }

  .user-history-mobile-menu-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    position:fixed !important;
    top:14px !important;
    right:14px !important;
    width:46px !important;
    height:46px !important;
    border:none !important;
    border-radius:50% !important;
    background:#15294a !important;
    color:#ffffff !important;
    font-size:20px !important;
    z-index:10000 !important;
    box-shadow:0 12px 26px rgba(21,41,74,0.24) !important;
    cursor:pointer !important;
    margin:0 !important;
  }

  .user-history-page-title-row{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:16px !important;
  }

  .user-history-top-filter{
    width:100% !important;
  }

  .user-history-search-box{
    width:100% !important;
    max-width:100% !important;
  }

  .user-history-row{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .user-history-check{
    justify-content:flex-start !important;
  }

  .user-history-action{
    justify-content:flex-start !important;
  }

  .user-history-action-label{
    text-align:left !important;
  }

  .user-history-bulk-action-bar{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .user-history-bulk-delete-btn{
    width:100% !important;
  }
}

/* MOBILE */
@media(max-width:768px){

  .user-history-main-content{
    padding:72px 14px 22px !important;
  }

  .user-history-page-title{
    padding:22px 18px !important;
  }

  .user-history-page-title h1{
    font-size:23px !important;
  }

  .user-history-page-title p{
    font-size:12.5px !important;
  }

  .user-history-search-box{
    padding:10px !important;
  }

  .user-history-search-form{
    flex-direction:column !important;
    align-items:stretch !important;
  }

  .user-history-search-form input{
    width:100% !important;
    max-width:100% !important;
  }

  .user-history-search-form button,
  .user-history-search-form a{
    width:100% !important;
  }

  .user-history-card{
    padding:14px !important;
  }

  .user-history-meta h3{
    white-space:normal !important;
    font-size:13.5px !important;
  }

  .user-history-meta span{
    white-space:normal !important;
  }

  .user-history-pagination{
    justify-content:flex-start !important;
  }
}

/* SMALL MOBILE */
@media(max-width:576px){

  .user-history-main-content{
    padding:68px 12px 20px !important;
  }

  .user-history-mobile-menu-btn{
    top:12px !important;
    right:12px !important;
    width:44px !important;
    height:44px !important;
    font-size:18px !important;
  }

  .user-history-page-title{
    padding:20px 16px !important;
  }

  .user-history-page-title h1{
    font-size:21px !important;
  }

  .user-history-page-title p{
    font-size:12px !important;
  }

  .user-history-filter-select{
    height:42px !important;
    font-size:11.5px !important;
  }

  .user-history-search-form input{
    height:40px !important;
    font-size:12px !important;
  }

  .user-history-search-form button,
  .user-history-search-form a{
    height:40px !important;
    font-size:11px !important;
  }

  .user-history-bulk-action-bar{
    padding:12px !important;
  }

  .user-history-card{
    padding:13px !important;
  }

  .user-history-pdf-icon-btn{
    width:36px !important;
    height:36px !important;
    font-size:15px !important;
  }

  .user-history-action-label{
    font-size:9.5px !important;
  }
}

/* EXTRA SMALL MOBILE */
@media(max-width:380px){

  .user-history-main-content{
    padding-left:10px !important;
    padding-right:10px !important;
  }

  .user-history-page-title{
    padding:18px 14px !important;
  }

  .user-history-page-title h1{
    font-size:20px !important;
  }

  .user-history-card{
    padding:12px !important;
  }
}




/* =====================================================
   LOGIN PASSWORD FIELD ICON FIX
===================================================== */

.login-password-input-wrap{
  position:relative !important;
  display:block !important;
  width:100% !important;
}

.login-password-input-wrap input{
  display:block !important;
  width:100% !important;
  height:50px !important;
  padding:0 48px 0 42px !important;
}

/* LEFT KEY ICON */

.login-password-input-wrap .login-password-left-icon{
  position:absolute !important;
  top:50% !important;
  left:14px !important;
  transform:translateY(-50%) !important;
  z-index:3 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  margin:0 !important;
  color:#8290a3 !important;
  font-size:14px !important;
  line-height:1 !important;
  pointer-events:none !important;
}

/* RIGHT EYE BUTTON */

.login-password-input-wrap .login-password-eye-btn{
  position:absolute !important;
  top:50% !important;
  right:8px !important;
  transform:translateY(-50%) !important;
  z-index:4 !important;

  width:34px !important;
  min-width:34px !important;
  height:34px !important;
  min-height:34px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  margin:0 !important;
  padding:0 !important;

  border:none !important;
  outline:none !important;
  background:transparent !important;
  box-shadow:none !important;

  color:#8290a3 !important;
  font-size:15px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

.login-password-input-wrap .login-password-eye-btn:hover{
  background:#eef3fb !important;
  color:#15294a !important;
}

.login-password-input-wrap .login-password-eye-btn i{
  display:block !important;
  margin:0 !important;
  line-height:1 !important;
  pointer-events:none !important;
}

@media(max-width:576px){

  .login-password-input-wrap input{
    height:48px !important;
  }
}