:root {
  --bg: #ffffff;
  --sidebar: #0f172a;
  --sidebar-hover: #1e293b;
  --primary: #2563eb;
  --success: #16a34a;
  --danger: #dc2626;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --Page-Plucker-Gray-20: #999;
  --Page-Plucker-Orange-20: #F18E41;
}

* {
  box-sizing: border-box;
}

body{
    font-family: 'Red Hat Display', sans-serif;
    margin: 0px;
}
html {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: #525f7f;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: none;
    color: #2B265A;
}

/* ================= SIDEBAR ================= */

.sidebar {
  /*position: fixed;*/
  width: 240px;
  min-height: 100vh;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #fff;
  padding-top: 20px;
}

.logo {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: var(--sidebar-hover);
  color: #fff;
}

.sidebar nav a.logout {
  margin-top: 30px;
  color: #fca5a5;
}

/* ================= MAIN ================= */

.main {
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: #fff;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
}

.header h1 {
  margin: 0;
  font-size: 22px;
}

.content {
  padding: 26px;
}

/* ================= CARD ================= */

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 820px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

/* ================= ROW ================= */

.row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.row:last-child {
  border-bottom: none;
}

.row span {
  color: var(--muted);
}

/* ================= BADGES ================= */

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.success {
  background: #dcfce7;
  color: var(--success);
}

.badge.danger {
  background: #fee2e2;
  color: var(--danger);
}

/* ================= LOGIN ================= */

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #fff;
}

.login-box {
  background: white;
  width: 360px;
  padding: 30px;
  /*border-radius: 14px;*/
  /*box-shadow: 0 15px 40px rgba(0,0,0,0.15);*/
}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.login-box button:hover {
  background: #1d4ed8;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .main {
    margin-left: 0;
  }
}
/* ===== SCRAPED DATA TABLE ===== */

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.table th {
  background: #f1f5f9;
  padding: 14px;
  text-align: left;
  font-size: 14px;
  color: #0f172a;
}

.table td {
  padding: 14px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.table tr:hover {
  background: #f8fafc;
}

/* Links */
.link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

/* Badges */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.badge-doc {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-file {
  background: #dcfce7;
  color: #166534;
}


/* ================= SIDEBAR ================= */

.sidebar {
  /*position: fixed;*/
  width: 240px;
  min-height: 100vh;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #fff;
  padding-top: 20px;
}

.logo {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: #4c3bc2;
  color: #fff;
}

.sidebar nav a.logout {
  margin-top: 30px;
  color: #fca5a5;
}

/* ================= MAIN ================= */

.main {
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: #fff;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border);
}

.header h1 {
  margin: 0;
  font-size: 22px;
}

.content {
  padding: 26px;
}

/* ================= CARD ================= */

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 820px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

/* ================= ROW ================= */

.row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.row:last-child {
  border-bottom: none;
}

.row span {
  color: var(--muted);
}

/* ================= BADGES ================= */

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.success {
  background: #dcfce7;
  color: var(--success);
}

.badge.danger {
  background: #fee2e2;
  color: var(--danger);
}

/* ================= LOGIN ================= */

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-box {
  background: white;
  width: 360px;
  padding: 30px;
  /*border-radius: 14px;*/
  /*box-shadow: 0 15px 40px rgba(0,0,0,0.15);*/
}

.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
}

.login-box{
  width: 28%;
}
.login-box .admin_login_logo{
      width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}
.login-box .login_header{
  margin-bottom: 30px;
}
.login-box .welcome_title{
      font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #2B265A;
    line-height: normal;
    letter-spacing: normal;
    margin-top: 0;
    padding: 0;
    margin-bottom: 7px;
}
.login-box .sign_in_decription{
    color: #2B265A;
    font-size: 18px;
    line-height: normal;
    font-family: 'Red Hat Display', sans-serif;
    /*letter-spacing: .5px;*/
    text-align: center;
    margin: 0;
}
.login-box input {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  border: 1px solid #7E76C8;;
  background-color: #fff;
  font-size: 18px;
  line-height: normal;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: .5px;
  color: #7E76C8;
  outline: none;
      font-weight: 400;
}
.login-box input:-internal-autofill-selected{
   background-color: #fff !important;
}
.login-box input:-webkit-autofill{
  -webkit-text-fill-color: #7E76C8;
  background-color: #fff;
  font-size: 18px !important;
  line-height: normal;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: .5px;
  color: #7E76C8;
  box-shadow: 0 0 0px 1000px #fff inset;    /* autofill bg color */
  transition: background-color 5000s ease-in-out 0s;
}
.login-box input::placeholder { color: #7E76C8; }
.login-box input::-webkit-input-placeholder { color: #7E76C8; }  /* Chrome/Safari */
.login-box input::-moz-placeholder { color: #7E76C8; }           /* Firefox */
.login-box input:-ms-input-placeholder { color: #7E76C8; } 

.login-box button {
  width: auto;
  background: #eb7d27;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: normal;
  font-family: 'Red Hat Display', sans-serif;
  letter-spacing: .5px;
  /* color: #7E76C8; */
  font-weight: 600;
  display: flex;
  align-items: center;
  width: auto;
  justify-content: center;
  margin: auto;
  padding: 15px 45px;
  border-radius: 30px;
}

.login-box button:hover {
  background: #332684;
}
.login-box .remember-wrap{
      margin: 0px 0 35px 0;
    display: flex;
    align-items: center;
}
.login-box .remember-wrap .remember-me{
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 14px;
    line-height: normal;
    font-family: 'Red Hat Display', sans-serif;
    color: #8D8D90;
    font-weight: normal;
}
.login-box .remember-wrap #rememberMe{
      width: 14px;
    height: 14px;
    cursor: pointer;
    margin: 0;
}
.login-box .copyright{
  font-size: 12px;
    line-height: normal;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: .5px;
    color: #2B265A;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .main {
    margin-left: 0;
  }
}
.main {
  margin-left: 240px; /* same as sidebar width */
  padding: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 8px;
}

.btn {
  padding: 10px 18px;
  background: #2b7cff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn:hover {
  background: #1e5fd8;
}


/* CSS Dashbord*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body{
  background:#fff;
}

/* LAYOUT */
.layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR */
.sidebar{
  width:260px;
  background:#3b2b8f;
  color:#fff;
  /*padding:24px;*/
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.logo{
  font-size:18px;
  font-weight:600;
  margin-bottom:28px;
}
.menu a{
  display:flex;
  align-items:center;
  gap:10px;

  text-decoration:none;      /* remove underline */
  color:#ffffff;             /* FORCE white text */
  font-size:14px;
  font-weight:500;

  padding:12px 14px;
  margin-bottom:8px;
  border-radius:10px;

  background:transparent;
  opacity:1;                 /* IMPORTANT */
  transition:background 0.2s ease;
}

/* Hover */
.menu a:hover{
  background:rgba(255,255,255,0.15);
}

/* Active */
.menu a.active{
  background:#4c3bc2;        /* solid purple */
  color:#ffffff;             /* KEEP white */
}

/* Remove browser focus outline */
.menu a:focus,
.menu a:active{
  outline:none;
}


.sidebar-footer{
  font-size:13px;
  opacity:.95;
}

.logout{
  /*color:#ffb347;*/
  /*margin-top:12px;*/
}

/* MAIN */
.main{
  flex:1;
  padding:28px 36px;
  /*overflow-y:auto;*/
}

/* HEADER */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar h1{
  font-size:26px;
  font-weight:600;
}

.topbar p{
  font-size:14px;
  color:#7b7b7b;
  margin-top:4px;
}

.search{
  width:300px;
  padding:12px 18px;
  border-radius:28px;
  border:1px solid #e1e1e1;
  font-size:14px;
}

/* ACTION CARDS */
.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin:28px 0;
}

.action-card{
  background:#f1effa;
  border-radius:16px;
  padding:22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.action-card h3{
  font-size:17px;
  font-weight:500;
  color:#2e2e2e;
}

.action-card p{
  font-size:14px;
  color:#8a8a8a;
  margin-top:6px;
}

.action-card button{
  background:#ff9f43;
  border:none;
  color:#fff;
  padding:10px 22px;
  border-radius:20px;
  font-size:14px;
  cursor:pointer;
}

/* GENERAL OVERVIEW */
.overview h2{
  font-size:18px;
  margin-bottom:14px;
}

.stats{
  display:flex;
  gap:16px;
}

.stat{
  background:#fff;
  border-radius:24px;
  padding:10px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
  font-size:14px;
  font-weight:600;
}

.stat-icon{
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:#fff;
}

.blue{background:#6c63ff;}
.green{background:#2ecc71;}
.orange{background:#f39c12;}

.stat span{
  font-weight:500;
  color:#7a7a7a;
}

/* DOCUMENTS */
.documents{
  margin-top:34px;
}

.documents h2{
  font-size:18px;
  margin-bottom:16px;
}

.doc-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  grid-column: span 3;
    -ms-grid-column: span 3;
  gap:22px;
}

.doc-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
}

/* Folder Header */
.folder-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.folder-title{
  font-size:16px;
  font-weight:600;
  color:#6c63ff;
}

/* Files */
.file{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#5b5bff;
  margin-bottom:8px;
}

.file span{
  /*color:#7b7b7b;*/
}

/* View folder */
.view-folder{
  display:inline-block;
  margin-top:12px;
  font-size:14px;
  color:#ff9f43;
  font-weight:600;
}


/* ================= ADMIN DASHBOARD CSS ================= */
.sidebar{
    background: #322783;
    width: 300px;
    height: 100%;
}
#sidebar {
    background: #322783;
}
.main.admin_dashboard{
    margin-left: 0px;
}
.sidebar .sidebar-logo img{
    width: 100%;
}
.main.admin_dashboard{
  padding-right: 120px;
      padding-left: 30px;
      background-color: #fff;
}
.admin_dashboard .topbar h1{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.admin_dashboard .topbar p{
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.admin_dashboard .search{
    border-radius: 16px;
    border: 1px solid var(--Page-Plucker-Gray-20);
    background: #FFF;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
    width: 48%;
}
.admin_dashboard .search::placeholder{
    color: var(--Page-Plucker-Gray-20);

}
.action-card{
    border-radius: 16px;
    background: #EEEDF8;
    justify-content: flex-start;
    gap: 25px;
}
.action-card .action-card-title{
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #2B265A;
}
.action-card .action-card-description{
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2B265A;
}
.action-card button{
    border-radius: 50px;
    background: var(--Page-Plucker-Orange-20);
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
}
.action-card button a{
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.generate-token-card.action-card .action-card-left img{
    width: 100px;
}

.overview h2{
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #1A1A1A;
}
.overview .stats .stat{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.overview .stats .stat .numbers{
        color: #000;
    font-family: "Red Hat Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.overview .stats .stat span{
    color: #000;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.documents .recent_document_title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.documents .doc-card{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
}
.dashboard-search {
  position: relative;
  width: 320px;
}



.search-section {
  margin-bottom: 10px;
}

.search-section h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.search-item {
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.search-item:hover {
  background: #f5f5f5;
}

.search-domain {
  color: #8b5cf6;
  font-weight: 600;
}
/* header layout */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative; /* 🔥 anchor dropdown */
}

/* search input */
.topbar .search {
  /*width: 420px;*/
  /*padding: 12px 16px;*/
  /*border-radius: 24px;*/
  /*border: 2px solid #000;*/
  outline: none;
  /*font-size: 14px;*/
}

/* dropdown */
.search-dropdown {
   position: absolute;
  top: 100%;              /* below the topbar */
  right: 0;               /* align to right side */
  margin-top: 10px;       /* gap below input */
  width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding: 14px;
  display: none;
  z-index: 9999;
}


/* sections */
.search-section {
  margin-bottom: 12px;
}

.search-section h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #1f2937;
}

/* item */
.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.search-item:hover {
  background: #f3f4f6;
}

.search-path {
  color: #111827;
}

.search-domain {
  color: #6d28d9;
  font-weight: 600;
  margin-left: 10px;
}

.documents .folder-icon{
    display: flex;
}
.documents .folder-title{
        font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000;
    text-transform: capitalize;
}
.documents .file{
    color: #312783;
    font-family: "Red Hat Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
    gap: 15px;
    margin-bottom: 15px;
}
.documents .doc-card{
        display: flex;
    flex-direction: column;
    height: 100%;
}
.documents .view-folder{
    color: #F18E41;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: auto;
    padding-top: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.documents .file span{ 
  color: #312783;
  font-family: "Red Hat Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
}

/* ================= SIDEBAR CSS ================= */
.sidebar nav .menu-item.my_documents_menu.active{
	background: #2c2376;
	margin-bottom: 8px;
}
.sidebar nav .menu-item.my_documents_menu.open .toggle-icon .down-arrow{
    display: none;
}
.sidebar nav .menu-item.my_documents_menu.open .toggle-icon .up-arrow{
    display: block !important;
}
.sidebar nav a:hover, .sidebar nav a.active{
    background: #2c2376;
    color: #FFF;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.sidebar nav a .active-icon,
.sidebar nav a .inactive-icon{
    width: 20px;
}
.sidebar nav a:hover .active-icon, .sidebar nav a.active .active-icon{
    display: block !important;
}

.sidebar nav a:hover .inactive-icon, .sidebar nav a.active .inactive-icon{
    display: none !important;
}
.sidebar nav a{
    color: #7E76C8;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 10px;
}
.sidebar .sidebar-footer .sidebar-footer-link{
    color: #FFF;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
}
.sidebar .sidebar-footer .logout .logout-link{
    color: #F18E41;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    text-decoration: none;
}
.sidebar .sidebar-footer .logout .logout-link img{
    width: 24px;
}
.sidebar .sidebar-footer .logout{
    border-top: 1px solid #BAB6E2;

}
.sidebar .sidebar-footer #sidebaradmin{
    color: #E6E6E6;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
        display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    text-decoration: none;
    margin-bottom: 15px;
}
.sidebar .sidebar-footer #sidebaradmin img{
    width: 24px;
}
.sidebar nav .menu-item.my_documents_menu > a{
	margin-bottom: 0px;
}
.sidebar .sidebar_menu{
	padding: 24px;
}
/* ================= DASHBOARD SEARCH CSS ================= */

.admin_dashboard .searchicon{
    /*background: url(/admin/images/search.svg) no-repeat right 12px center;*/
    position: absolute;
    right: 0;
        display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    cursor: pointer;
}
.search-dropdown .search-result-title{
      font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000;
    padding-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 10px;
}
.search-dropdown{
    width: 48%;
}
.search-dropdown .search-section-title{
        color: #000;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.search-dropdown .search-item{
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}
.search-dropdown .search-item .search-path{
        display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.search-dropdown .search-item .search-domain{
        display: flex;
    align-items: center;
    gap: 10px;
    color: #BAB6E2;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.search-dropdown .search-item strong{
        color: #000;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.search-dropdown .search-section.folder{
    padding-top: 10px;
    border-top: 1px solid #E6E6E6;
    margin-top: 10px;
}

/* ================= SEARCH PAGE CSS ================= */

.search_result_page .main.admin_dashboard{
    padding: 30px;
}
.search_result_page .search_page_title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-top: 50px;
    padding-bottom: 40px;
}
.search_result_page .back-link{
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #312783;
    text-decoration: none;
        display: flex;
    align-items: center;
    gap: 10px;
}
.search_result_page .table-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
     padding-bottom: 30px;
}
.search_result_page .search_table_title{
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.search_result_page .table-header .table-header-action{
        display: flex;
    gap: 20px;
    align-items: center;
}
.search_result_page .table-header .status_filter{
        border-radius: 6px;
    border: 1px solid #E6E6E6;
    color: #1A1A1A;
    text-align: left;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 25px 8px 12px;
    appearance: none;
    background-image: url(/admin/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 20px;
    outline: none;
    background-color: #fff;
}
.search_result_page .table-header .date_range_filter{
        border-radius: 6px;
    border: 1px solid #E6E6E6;
    color: #1A1A1A;
    text-align: left;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 25px 8px 12px;
    appearance: none;
    background-image: url(/admin/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 20px;
    outline: none;
    background-color: #fff;
}
.search_result_page .table-header .grid_list_filter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_result_page .table-header .list_view{
    display: flex;
    border-radius: 6px 0 0 6px;
    border: 1px solid #7E76C8;
    background: #DDDBF0;
    padding: 2px 7px;
    cursor: pointer;
}
.search_result_page .table-header .grid_view{
    display: flex;
    display: flex;
    border-radius: 0 6px 6px 0;
    border: 1px solid #E6E6E6;
    padding: 2.5px 7px;
    cursor: pointer;
}

.search_result_page .doc-table{
    border-collapse: separate;
}
.search_result_page .doc-table thead tr th{
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #999;
        padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
}
.search_result_page .doc-table thead tr th:last-child{
    text-align: right;
}
.search_result_page .doc-table thead tr th:last-child .date-header-cell{
        display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.search_result_page .doc-table tbody tr td{
    padding: 14px 10px;
    border-bottom: 1px solid #E6E6E6;
}
.search_result_page .doc-table tbody tr:last-child td{
    border-bottom: 0;
}
.search_result_page .doc-table tbody tr td:first-child span{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}
.search_result_page .doc-table tbody tr td.folder-cell{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}
.search_result_page .doc-table tbody tr td.folder-cell span{
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.search_result_page .doc-table tbody tr td.title-cell a{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
}
.search_result_page .doc-table tbody tr td.url-cell .document_url{
        display: flex;
    align-items: center;
    gap: 10px;
}
.search_result_page .doc-table tbody tr td.url-cell a{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.search_result_page .doc-table tbody tr td.url-cell .copy_url{
    display: flex;
    cursor: pointer;
}
.search_result_page .doc-table tbody tr td.url-cell .copy_url .copy_text{
    font-size:12px;
    color:#F18E41 !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.search_result_page .doc-table tbody tr td.actions-cell .download_doc{
        display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.search_result_page .doc-table tbody tr td.actions-cell .download_doc a{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7E76C8;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.search_result_page .doc-table tbody tr td.actions-cell .download_doc .more{
        display: flex;
    border-radius: 6px;
    background: #F2F2F2;
    padding: 5px 5px;
    cursor: pointer;
}
.search_result_page .doc-table tbody tr td.date-cell {
        color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
        text-align: right;
}
.search_result_page .search_folder_title{
    color: #000;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}


/* ===== LIST VIEW MODE ===== */
body.list-view .documents {
  display: none; /* hide folders grid */
}

body.list-view .doc-table {
  display: table;
}

/* ===== GRID VIEW MODE (default) ===== */
body.grid-view .documents {
  display: block;
}

/* active icon */
.grid_list_filter div.active {
  background: #f2f2ff;
  /*border-radius: 6px;*/
}

/* ==================================================== */
/* ================= MY DOCUMENT PAGE ================= */
/* ==================================================== */

.my_document_page .main.admin_dashboard{
  padding: 30px 60px 30px 30px;
}
.my_document_page .my_document_title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}
.my_document_filter{
        display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}
.my_document_filter .my_document_stats{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 0;
    display: flex;
    align-items: center;
}
.my_document_filter .my_document_stats .my_document_stat{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 18px;
    border-right: 1px solid #E6E6E6;
    margin: 6px 0px;
}
.my_document_filter .my_document_stats .my_document_stat:last-child{
    border-right: 0px;
}
.my_document_filter .my_document_stats .my_document_stat .numbers{
    color: #000;
    font-family: "Red Hat Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.my_document_filter .my_document_stats .my_document_stat span{
    color: #000;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.my_document_filter .my_document_search{
    border-radius: 16px;
    border: 1px solid var(--Page-Plucker-Gray-20);
    background: #FFF;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
    width: 48%;
    padding: 12px 18px;
    outline: none;
}
.my_document_filter .my_document_search::placeholder{
    color: var(--Page-Plucker-Gray-20);
}
.my_document_page .my_document_table{
    border-collapse: separate;
}
.my_document_page .my_document_table thead tr th{
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #999;
        padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
}
.my_document_page .my_document_table thead tr th:nth-child(2){
  width: 108px;
}
.my_document_page .my_document_table thead tr th:last-child{
    text-align: right;
    padding-right:0px;
    min-width: 150px;
}
.my_document_page .my_document_table thead tr th:last-child .date-header-cell{
        display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.my_document_page .my_document_table tbody tr td{
    padding: 14px 10px;
    border-bottom: 1px solid #E6E6E6;
}
.my_document_page .my_document_table tbody tr:last-child td{
  border-bottom: 0;
}
.my_document_page .my_document_table tbody tr td:first-child span{
        color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    text-align: center;
        display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}
.my_document_page .my_document_table tbody tr td.title-cell a.doc_title{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
}

.my_document_page .my_document_table tbody tr td.folder-cell{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}
.my_document_page .my_document_table tbody tr td.folder-cell span{
    display: flex;
    align-items: center;
    gap: 7px;
}

.my_document_page .my_document_table tbody tr td.url-cell .document_url{
        display: flex;
    align-items: center;
    gap: 10px;
}
.my_document_page .my_document_table tbody tr td.status-cell .badge.success{
    border-radius: 10px;
    background: #62B8A6;
    color: #fff;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 3px 10px;
}
.my_document_page .my_document_table tbody tr td.status-cell .badge img{
    margin-right: 4px;
}
.my_document_page .my_document_table tbody tr td.status-cell .badge.danger{
    border-radius: 10px;
    background: #DE622A;
    color: #E6E6E6;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 3px 10px;
}
.my_document_page .my_document_table tbody tr td.url-cell a{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
    
}
.my_document_page .my_document_table tbody tr td.url-cell .copy_url .copy_text{
    color:#F18E41;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.my_document_page .my_document_table tbody tr td.url-cell .copy_url{
    display: flex;
    cursor: pointer;
}
.my_document_page .my_document_table tbody tr td.actions-cell .download_doc{
        display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.my_document_page .my_document_table tbody tr td.actions-cell .download_doc a{
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7E76C8;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.my_document_page .my_document_table tbody tr td.actions-cell .download_doc .more{
        display: flex;
    border-radius: 6px;
    background: #F2F2F2;
    padding: 5px 5px;
    cursor: pointer;
}
.my_document_page .my_document_table tbody tr td.date-cell {
        color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    padding-right:0px;
}
.my_document_page .my_document_table tbody tr td.no_result_found{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.my_document_page .table-header-action{
        display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom:20px;
}
.my_document_page .status_filter{
        border-radius: 6px;
    border: 1px solid #E6E6E6;
    color: #1A1A1A;
    text-align: left;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 30px 8px 10px;
    appearance: none;
    background-image: url(/admin/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 20px;
    outline: none;
    background-color: #fff;
}
.my_document_page .date_range_filter{
        border-radius: 6px;
    border: 1px solid #E6E6E6;
    color: #1A1A1A;
    text-align: left;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 10px 8px 10px;
    appearance: none;
    background-image: url(/admin/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: 20px;
    outline: none;
    background-color: #fff;
}
.my_document_page .grid_list_filter{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
}
.my_document_page .list_view{
    display: flex;
    border-radius: 6px 0 0 6px;
    border: 1px solid #7E76C8;
    background: #DDDBF0;
    padding: 2px 7px;
}
.my_document_page .grid_view{
    display: flex;
    display: flex;
    border-radius: 0 6px 6px 0;
    border: 1px solid #E6E6E6;
    padding: 2.5px 7px;
}

/*===================== SEARCH GRID VIEW ============================*/
.grid-cards {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.doc-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-card-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  position: relative;
}

.doc-card-content {
  font-size: 12px;
  color: #555;
  height: 90px;
  overflow: hidden;
}

.doc-card-footer {
  font-size: 12px;
  color: #777;
}

.doc-card-footer a {
  color: #6b6bff;
  font-size: 13px;
}

.status-pill {
  background: #ecebff;
  color: #5b57ff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  width: fit-content;
}

.search_result_page .table-header .grid_view.active .inactive_grid_icon{
    display: none;
}
.search_result_page .table-header .grid_view.active .active_grid_icon{
    display: block !important;
}
.search_result_page .table-header .list_view.active .active_list_icon{
    display: block;
}
.search_result_page .table-header .list_view:not(.active) .inactive_list_icon{
    display: block !important;
}
.search_result_page .table-header .list_view:not(.active) .active_list_icon{
    display: none;
}
.search_result_page .table-header .list_view:not(.active){
    display: flex;
    border-radius: 6px 0 0 6px;
    border: 1px solid #E6E6E6;
    background: transparent;
    padding: 2px 7px;
}
.search_result_page .table-header .grid_view.active{
    border-radius: 0 6px 6px 0;
    border: 1px solid var(--Page-Plucker-Blue-20, #7E76C8);
    background: #DDDBF0;
}
#gridCards .doc-card{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
}
#gridCards .doc-card .doc-card-header a{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
}
#gridCards .doc-card .doc-card-header span:not(.more_grid){
    width:90%;
}
#gridCards .doc-card .doc-card-header .more_grid{
  cursor: pointer;
}
#gridCards .doc-card .doc-card-header .more_grid img{
    display: flex;
    border-radius: 6px;
    background: #F2F2F2;
    padding: 5px 5px;
    margin: auto;
}
#gridCards .doc-card .doc-card-content{
        height: auto;
}
#gridCards .doc-card .doc-card-content .pre-img{
    width: 100%;
}

#gridCards .doc-card .doc-card-footer .date{
    color:  #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
#gridCards .doc-card .doc-card-footer a{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
#gridCards .doc-card .status-pill{
        background: #62B8A6;
            display: flex;
    align-items: center;
}   
#gridCards .doc-card .status-pill a{
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /*padding: 3px 10px;*/
    text-decoration: none;
}
#gridCards .doc-card .status-pill img{
  margin-right: 4px;
}
/*===================== 03/02/2026 success page ============================*/
.page-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.docs-table th,
.docs-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.docs-table th {
  background: #f8f9fb;
  font-weight: 600;
}

.action-link {
  color: #ff7a18;
  text-decoration: none;
  font-weight: 500;
}

.action-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background: #ff7a18;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}
.docs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.docs-table th,
.docs-table td {
  padding: 14px;
  /*border-bottom: 1px solid #eee;*/
  vertical-align: middle;
}

.docs-table th {
  background: #fafafa;
  font-weight: 600;
  color: #666;
}

.status-pill {
  display: inline-block;
  background: #7b61ff;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.doc-title {
  font-weight: 600;
  margin: 6px 0 4px;
}

.doc-url a {
  font-size: 13px;
  color: #7b61ff;
  text-decoration: none;
  word-break: break-all;
}

.actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*margin-right: 12px;*/
  color: #ff7a18;
  font-weight: 500;
  text-decoration: none;
}

.actions a:hover {
  text-decoration: underline;
}

.btn-primary {
  background: #ff7a18;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.toast {
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.4s ease;
}

.toast.show {
  top: 0;
}

.toast.success {
  background: #28a745;
  color: #fff;
}

.toast.error {
  background: #dc3545;
  color: #fff;
}

/*MY DOCUMENT PAGE GRID VIEW CSS*/

.my_document_page .table-header-action .grid_view.active .inactive_grid_icon{
    display: none;
}
.my_document_page .table-header-action .grid_view.active .active_grid_icon{
    display: block !important;

}
.my_document_page .table-header-action .list_view.active .active_list_icon{
    display: block;
}
.my_document_page .table-header-action .list_view:not(.active) .inactive_list_icon{
    display: block !important;
}
.my_document_page .table-header-action .list_view:not(.active) .active_list_icon{
    display: none;
}
.my_document_page .table-header-action .list_view:not(.active){
    display: flex;
    border-radius: 6px 0 0 6px;
    border: 1px solid #E6E6E6;
    background: transparent;
    padding: 3px 7px;
}
.my_document_page .table-header-action .grid_view.active{
    border-radius: 0 6px 6px 0;
    border: 1px solid var(--Page-Plucker-Blue-20, #7E76C8);
    background: #DDDBF0;
}



/*=====================  PAGEPLUCKER SCRAPER ============================*/

.pageplucker_scraper .main.admin_dashboard{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pageplucker_scraper .pageplucker_image_section{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.pageplucker_scraper .pageplucker_scraper_title{
    color: #1A1A1A;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.pageplucker_scraper .pageplucker_scraper_sub_title{
    color: #2B265A;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
#pageplucker_scraper_form #urls{
    border-radius: 16px;
    border: 1px solid #7E76C8;
    background: #FFF;
    display: flex;
    height: 122px;
    padding: 12px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;
    margin-bottom: 10px;
}
#pageplucker_scraper_form #urls::placeholder{
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#pageplucker_scraper_form .info_section{
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7E76C8;
    font-family: "Red Hat Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    justify-content: center;
    margin-bottom: 40px;
}
#pageplucker_scraper_form .submit_button{
    border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 12px 20px;
    margin: auto;
    display: flex;
    cursor: pointer;
}

/*=====================  ADMIN USER CSS ============================*/

.admin_user_list_page .admin_user_title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}
.admin_user_list_table{
    border-collapse: separate;
}
.admin_user_list_table thead tr th{
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #999;
        padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
}
.admin_user_list_table thead tr th:last-child{
    text-align: right;
}
.admin_user_list_table tbody tr td{
    padding: 14px 10px;
    border-bottom: 1px solid #E6E6E6;
}
.admin_user_list_table tbody tr td:first-child span {
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}
.admin_user_list_table tbody tr td.email-cell{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.admin_user_list_table tbody td.delete-cell{
  padding-right: 0px;
}
.admin_user_list_table tbody td.delete-cell button{
        border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 10px 20px;
    margin-left: auto;
    display: flex;
    cursor: pointer;
        gap: 10px;
}
.admin_user_list_page .add_new_admin{
      border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 10px 20px;
    margin-right: auto;
    display: flex;
    cursor: pointer;
      gap: 10px;
      text-decoration: none;
}
/*=====================  EDIT FOLDER NAME CSS ============================*/

.edit_folder_page .edit_folder_title{
        color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.edit_folder_table{
    border-collapse: separate;
}
.edit_folder_table thead tr th{
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #999;
        padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
}
.edit_folder_table thead tr th:last-child{
    text-align: right;
}
.edit_folder_table tbody tr td{
    padding: 14px 10px;
    border-bottom: 1px solid #E6E6E6;
}
.edit_folder_table tbody td.folder-name-cell span{
  display: flex;
  align-items: center;
  gap:10px;
}
.edit_folder_table tbody td.folder-name-cell .folder-input{
    padding: 8px 14px;
    border-radius: 15px;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    font-size: 16px;
    line-height: normal;
    font-family: 'Red Hat Display', sans-serif;
    color: #1A1A1A;
    outline: none;
    font-weight: 400;
}
.edit_folder_table tbody td.total-doc-cell span{
        color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}
.edit_folder_table tbody td.button-cell{
  padding-right:0px;
}
.edit_folder_table tbody td.button-cell button{
        border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 10px 20px;
    margin-left: auto;
    display: flex;
    cursor: pointer;
}

/*=====================  Scrap Success Page CSS ============================*/

.scrap-success-page h2.page-title{ 
    color: #1A1A1A;
    text-align: left;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; 
      display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.scrap_success_page .scrap_success_table{
    border-collapse: separate;
    width: 100%;
}
.scrap_success_page .scrap_success_table thead tr th{
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #999;
        padding: 5px 10px;
    text-align: left;
    text-transform: uppercase;
        
}
.scrap_success_page .scrap_success_table thead tr th:first-child{
    padding-left: 0px;
}
.scrap_success_page .scrap_success_table thead tr th:last-child .date-header-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.scrap_success_page .scrap_success_table thead tr th:last-child{
    text-align: right;
}
.scrap_success_page .scrap_success_table tbody tr td{
    padding: 14px 10px;
    border-bottom: 1px solid #E6E6E6;
}
.scrap_success_page .scrap_success_table tbody tr:last-child td{
  border-bottom: 0;
}
.scrap_success_page .scrap_success_table tbody tr td:first-child{
    padding-left: 0px;
}
.scrap_success_page .scrap_success_table tbody tr td:first-child span {
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}
.scrap_success_page .scrap_success_table tbody tr td.status-cell .status-pill {
    border-radius: 10px;
    background: #62B8A6;
    color: #fff;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 3px 10px;
}
.scrap_success_page .scrap_success_table tbody tr td.status-cell .status-pill img{
    margin-right: 4px;
}
.scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-title{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0px;
}
.scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url .document_url{
        border-radius: 6px;
    background: #F5F4FB;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    width: max-content;
}
.scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url a{
    color: #312783;
    font-family: "Red Hat Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
     
}
.scrap_success_page .scrap_success_table tbody tr td.title-cell .copy_url{
    display: flex;
}
.scrap_success_page .scrap_success_table tbody tr td.title-cell .copy_url .copy_text{
    color:#F18E41;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.scrap_success_page .scrap_success_table tbody tr td.actions-cell .action_cell_links{
        display: flex;
    align-items: center;
    gap: 20px;
}
.scrap_success_page .scrap_success_table tbody tr td.actions-cell .open-btn{
    color: #DE622A;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.scrap_success_page .scrap_success_table tbody tr td.actions-cell .download-btn{
    color: #7E76C8;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.scrap_success_page .scrap_success_table tbody tr td.date-cell {
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    padding-right: 0px;
}
.scrap_success_page .export_more_page_button a{
        border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
    width: max-content;
}
.scrap_success_page .export_more_page_button{
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

/*SUB MENU CSS*/
/*.sidebar nav  #folderList{
	display: none;
}*/
.sidebar nav  .my_documents_menu a{
	    display: flex;
    align-items: center;
}
.sidebar nav  .my_documents_menu .toggle-icon {
    display: flex;
     width: 20px; 
    transition: transform 0.3s;
    font-size: 12px;
}
.sidebar nav .folderList {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.sidebar nav .folderList.open {
  max-height: 1000px; /* enough height */
}
.sidebar nav .my_documents_menu .folderList a{
	align-items: flex-end;
	gap:0;

}
.sidebar nav .my_documents_menu .folderList a .folder-icon,
.sidebar nav .my_documents_menu .folderList a .folder-icon-arrow-active{
  padding-bottom: 5px;
}
.sidebar nav .my_documents_menu .folderList a .folder-icon-arrow-active,
.sidebar nav .my_documents_menu .folderList a .folder-icon-active
{
  display: none;
}
.sidebar nav .my_documents_menu .folderList a .folder-icon-1,
.sidebar nav .my_documents_menu .folderList a .folder-icon-active{
	margin-right: 10px;
  padding-bottom: 3px;

}
.sidebar nav .my_documents_menu .folderList a:hover .folder-icon-arrow-active,
.sidebar nav .my_documents_menu .folderList a:hover .folder-icon-active{
  display: block;
}
.sidebar nav .my_documents_menu .folderList a:hover .folder-icon,
.sidebar nav .my_documents_menu .folderList a:hover .folder-icon-1{
  display: none;
}
.sidebar-footer{
	padding: 24px;
	position: sticky;
    bottom: 0;
    background: #322783;
    z-index: 9999;
    /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);*/
}

/* ==========================================================================*/
/* ================= MY DOCUMENT PAGE MOVE FOLDER OPTION CSS ================ */
/* ==========================================================================*/
.more_option_dropdown{
    position: absolute;
    top: 33px;
    right: 16px;
    min-width: 200px;
    width: auto;
    padding: 10px;
    /*display: none;*/
    z-index: 11;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #999;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    transition: max-height 0.3s ease, opacity 0.2s ease;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-6px) scale(0.98);
    z-index: 0;
}
.more_option_dropdown a:first-child{
  display: none !important;
}
.my_document_page .my_document_table tbody tr td.actions-cell .download_doc .more_option_dropdown a{
    color: #1A1A1A;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #999;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.search_result_page .doc-table tbody tr td.actions-cell .download_doc .more_option_dropdown a{
    color: #1A1A1A;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #999;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}
#gridCards .doc-card .doc-card-header .more_option_dropdown{
  right: 0;
}
#gridCards .doc-card .doc-card-header .more_option_dropdown a{
    color: #1A1A1A;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #999;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}
#gridCards .doc-card .doc-card-header .more_option_dropdown a:last-child{
    border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.my_document_page .my_document_table tbody tr td.actions-cell .download_doc .more_option_dropdown a:last-child{
  border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.search_result_page .doc-table tbody tr td.actions-cell .download_doc .more_option_dropdown  a:last-child{
  border-bottom: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.more_option_dropdown.open{
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 10;
}


/* ===============================================================*/
/* ================= ADD ADMIN USER FORM CSS===== ================ */
/* ===============================================================*/
.add_admin_user_page .register_logo img{
    width: 57%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}
.add_admin_user_page .title{
        font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #2B265A;
    line-height: normal;
    letter-spacing: normal;
    margin-top: 0;
    padding: 0;
    margin-bottom: 20px;
}
.add_admin_user_page .main.admin_dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
}
#addAdminForm .form-group input{
    width: 100%;
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid #7E76C8;
    background-color: #fff;
    font-size: 18px;
    line-height: normal;
    font-family: 'Red Hat Display', sans-serif;
    color: #7E76C8;
    outline: none;
    font-weight: 400;
}
#addAdminForm .form-group input::placeholder { color: #7E76C8; }
#addAdminForm .create-admin_btn{
    border-radius: 50px;
    background: #EF7C23;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    padding: 12px 20px;
    margin: auto;
    display: flex;
    cursor: pointer;
    margin-top: 20px;
}
.add_admin_user_page .back_to_admin{
  font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #312783;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
        justify-content: center;
}
.add_admin_user_page .admin-user-form-card{
    width: 35%;
}

.scrap_success_table tr th:first-child,
.scrap_success_table tr td:first-child{
    display: none;
}
.my_document_table tr th:first-child,
.my_document_table tr td:first-child{
    display: none;
}
.search_result_page .doc-table tr th:first-child,
.admin_user_list_table tr th:first-child,
.admin_user_list_table tr td:first-child,
.search_result_page .doc-table tr td:first-child{
  display: none;
}

/* ===============================================================*/
/* ================= Google Token =============================== */
/* ===============================================================*/
.token_page .main.admin_dashboard .token_container{
    width: 80%;
}
.token_container .title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}.token_container .token-stats{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
        align-items: center;
}
.token_container .token-stats .token-pill{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 18px;
    border-right: 1px solid #E6E6E6;
    margin: 6px 0px;
}
.token_container .token-stats .token-pill .token_number{
        color: #000;
    font-family: "Red Hat Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.token_container .token-stats .token-pill span{
        color: #000;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.token_container .status_filter{
    border-radius: 6px;
    border: 1px solid #E6E6E6;
    color: #1A1A1A;
    text-align: left;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 30px 8px 10px;
    appearance: none;
    background-image: url(/admin/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 20px;
    outline: none;
    background-color: #fff;
}
.create-token-btn{
    border-radius: 50px;
    background: #F18E41;
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
        display: flex;
    align-items: center;
    gap: 5px;
}
.token-card{
    border-radius: 16px;
    border: 1px solid #E6E6E6;
    background:#FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.token-card .token-card-title{
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.token-card .token-row span:first-child{
    color: #1A1A1A;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.token-card .token-row span:last-child{
    color: #1A1A1A;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align:right;
}
.token-card .token-row span.status{
    border-radius: 12px;
    background: #7E76C8;
    color: #FFF;
    text-align: center;
    font-family: "Red Hat Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 3px 10px;
}
/* Small mobiles (≈ 5.5 – 6 inch) */
@media (max-width: 390px) {
    .scrap_success_page .table-scroll{
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .scrap_success_page .scrap_success_table{
        width: 100% !important;
        border-collapse: collapse;
    }
    .grid-cards{
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    .my_document_page .status_filter{
            font-size: 13px !important;
    }
    .my_document_page .date_range_filter{
        font-size: 13px !important;
    }
    .pageplucker_scraper .pageplucker_scraper_sub_title{
        width: 80% !important;
    }
    .my_document_page .my_document_table{
        width: 100% !important;
        border-collapse: collapse;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .download-btn{
        font-size: 12px !important; 
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .open-btn{
        font-size: 12px !important;
                width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .download-btn, .my_document_page .my_document_table tbody tr td.title-cell .download_doc .open-btn{
        font-size: 12px !important;
    }
    .search_result_page .doc-table tbody tr td tbody tr td.title-cell .download_doc .download-btn, .search_result_page .doc-table tbody tr td tbody tr td.title-cell .download_doc .open-btn{
        font-size: 12px !important;
    }
    .token-card .token-row:nth-child(3) span:last-child {
        word-break: break-word;
    }
}

@media only screen and (min-width:320px) and (max-width:568px) {
    /*=====================  LOGIN Page CSS ============================*/
    .login-box {
        width: 95%;
    }
    .login-box .admin_login_logo{
        width: 95%;
    }
    .login-container{
        padding-top: 50px;
        align-items: flex-start;
        height: 100%;
    }
    .login-box .remember-wrap #rememberMe{
    	width: 14px;
	    height: 14px;
    	/*transform: scale(0.8);*/
    }
    @supports (-webkit-appearance: none) {
	  .login-box .remember-wrap #rememberMe{
	    transform: scale(0.8);
	  }
	}
    .login-box .remember-wrap .remember-me{
	        gap: 7px;

    }
    
    /*=====================  SIDEBAR Page CSS ============================*/
    .layout{
        flex-direction: column;
    }
    .sidebar_mobile{
        display: flex !important;
        background: #322783;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        gap: 20px
    }
    #sidebar .sidebar{
        transition: transform 0.7s;
        transform: translateX(-120%);
        width: 100%;
            position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        z-index: 999;
        height: 100vh;
        overflow: auto;
    }
    .sidebar_mobile .sidebar-logo a{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: 45px;
    }
    .sidebar_mobile .sidebar-logo a img{
        width: 70%;
    }
    .sidebar_mobile .mobile_menu{
        display: flex;
        cursor: pointer;
    }
    .sidebar_mobile .mobile_menu img{
        width: 30px;
    }
    #sidebar .sidebar .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #sidebar .sidebar .sidebar-logo .company_logo{
        display: flex;
    }
    #sidebar .sidebar .sidebar-logo .company_logo img{
        width: 55%;
    }
    #sidebar .sidebar .sidebar-logo .close_menu{
        display: flex !important;
    }
    #sidebar .sidebar .sidebar-logo .close_menu img{
        width: 40px;
    }
    .main.admin_dashboard{
        margin-left: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    /*=====================  DASHBOARD Page CSS ============================*/
    
    
    .topbar{
        flex-direction: column;
    }
    .admin_dashboard .topbar h1.desktop{
      display: none;
    }
    .admin_dashboard .topbar h1.mobile{
      display: block !important;
    }
    .admin_dashboard .topbar h1{
        text-align: center;
        font-size: 28px;
    }
    .admin_dashboard .topbar p{
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .admin_dashboard .search{
        width: 100%;
    }
    .admin_dashboard .searchicon{
        bottom: 10px;
    }
    .search-dropdown {
        width: 100%;
    }
    .actions{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .action-card{
        gap:10px;
            padding: 20px;
    }
    .action-card .action-card-left img {
        width: 84px;
    }
    .action-card button{
        padding: 10px 14px;
    }
    .action-card .action-card-title{
        font-size: 18px;
        line-height: normal;
    }
    .action-card .action-card-description{
        font-size: 16px;
        line-height: normal;
    }
    .action-card button a{
        font-size: 16px;
        line-height: normal;
    }
    .generate-token-card.action-card .action-card-left img {
        width: 84px;
    }
    .overview h2{
        font-size: 24px;
        line-height: normal;
    }
    .overview .stats .stat{
        flex-direction: column;
        align-items: center;
        width: 33.33%;
    }
    .overview .stats .stat .numbers{
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .overview .stats .stat span{
        font-size: 14px;
        text-align: center;
    }
    .documents .recent_document_title{

    }
    .doc-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .documents .doc-card{
        padding: 20px;
    }
    .documents .folder-title{
        font-size: 18px;
    }
    
    .documents .view-folder{
        font-size: 18px;
    }

    /*=====================  PAGEPLUCKER SCRAPER ============================*/
    
    .pageplucker_scraper .main.admin_dashboard{
    	justify-content: flex-start;
    	padding-top: 80px;
    }
    #pageplucker_scraper_form #urls{
    	width: 100%;
    }
    .pageplucker_scraper .pageplucker_scraper_title{
        font-size: 28px;
            margin-bottom: 10px;
    }
    .pageplucker_scraper .pageplucker_scraper_sub_title{
        font-size: 18px;
        width: 60%;
        margin: auto auto 30px auto;

    }
    #pageplucker_scraper_form .submit_button{
        font-size: 16px;
    }
    /*=====================  Scrap Success Page CSS ============================*/
    
    .scrap-success-page h2.page-title{
    	flex-direction: column;
    	text-align: center;
        font-size: 28px;
                width: 78%;
        margin: 0 auto 30px;
    }
    
    .scrap_success_page .scrap_success_table thead tr th{
        font-size: 12px;
    }
    .scrap_success_page .scrap_success_table tbody tr td:first-child span{
        width: auto;
    }
    
    .scrap_success_table tr th.hide-mobile,
    .scrap_success_table tr td.hide-mobile{
        display: none;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .status-pill{
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .download-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url .document_url{
            gap: 6px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .scrap_success_page .scrap_success_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child{
        width: 124px;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child .date-header-cell{
        gap:4px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .scrap_success_page .scrap_success_table{
            border-collapse: collapse;
    }
    .scrap_success_page .main.admin_dashboard{
        padding-right: 15px;
        padding-left: 15px;
    }
    .scrap_success_page .export_more_page_button{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .scrap_success_page .export_more_page_button a{
        font-size: 16px;
    }


    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE GRID CSS ============ */
    /* ==================================================== */
    
    .my_document_page .main.admin_dashboard{
            padding: 30px 20px 30px 20px;
    }
    .my_document_page .my_document_title{
        text-align: center;
        font-size: 28px;
    }
    .my_document_filter{
        flex-direction: column;
        gap:20px;
    }
    .my_document_filter .my_document_stats .my_document_stat{
        flex-direction: column;
                width: 33.33%;
    }
    .my_document_filter .my_document_stats{
        width: 100%;
    }
    .my_document_filter .my_document_stats .my_document_stat .numbers{
        font-size: 20px;
    }
    .my_document_filter .my_document_stats .my_document_stat span{
        font-size: 14px;
    }
    .my_document_filter .my_document_search{
        width: 100%;
    }
    .my_document_page .status_filter{
        padding: 8px 20px 8px 8px;
        font-size: 14px;
    }
    .my_document_page .date_range_filter{
        background-position: 92% 57%;
            background-size: 15px;
    }
    .my_document_page .status_filter{
        background-position: 92% 57%;
            background-size: 15px;
    }
    .my_document_page .date_range_filter{
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .my_document_page .table-header-action{
        gap:10px;
    }
    .grid-cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
    }
    #gridCards .doc-card .doc-card-footer .date{
            font-size: 12px;
    }
    #gridCards .doc-card .doc-card-footer a{
        word-wrap: break-word;
    }
    #gridCards .doc-card .doc-card-footer{
        order: 4;
    }
    #gridCards .doc-card .status-pill{
        order: 3;
        font-size: 10px;
    }
    #gridCards .doc-card .doc-card-footer .links{
        background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        gap: 4px;
    }
    #gridCards .doc-card .doc-card-footer .links .copy_url .copy_text{
        min-width: 40px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    #gridCards .doc-card .doc-card-footer .links .copy_url{
        display: flex !important;
    }
    #gridCards .doc-card .download-pill{
        display: flex !important;
        order: 5;
        flex-direction: column;
        gap: 10px;
    }
    #gridCards .doc-card .download-pill a{
        color:  #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
                width: max-content;
    }
    .more_option_dropdown{
        min-width: auto;
    }


    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE TABLE CSS ============ */
    /* ==================================================== */

    .my_document_table tr th.hide-mobile,
    .my_document_table tr td.hide-mobile{
        display: none;
    }
    .my_document_page .my_document_table thead tr th{
      font-size: 12px;
    }
    .my_document_page .my_document_table thead tr th.title-row .desktop-title{
        display: none;
    }
    .my_document_page .my_document_table thead tr th.title-row .mobile-title{
        display: block !important;
    }
    .my_document_page .my_document_table tbody tr td:first-child span{
      width: auto;
    }
    .my_document_page .my_document_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success img{
        margin-right: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success {
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.danger{
        border-radius: 10px;
        background: #DE622A;
        color: #E6E6E6;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell a.doc_title{
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .copy_text{
        min-width: 40px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        font-size: 14px;
        padding-right: 0px;
                position: relative;
    }
    .my_document_page .my_document_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .my_document_page .my_document_table thead tr th:last-child{
        min-width: 110px;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .download-btn,
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
        width: max-content;
    }
    .my_document_page .my_document_table thead tr th:last-child .date-header-cell{
        gap:5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc a:last-child,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
      padding-bottom: 0px;
      margin-bottom: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
    }
    #gridCards .doc-card .doc-card-header .more_option_dropdown{
        right: -5px;
                min-width: auto;
    }
    #gridCards .doc-card .doc-card-header .more_option_dropdown a{
        font-size: 16px;
    }
    #gridCards .doc-card .status-pill a{
        padding: 0px;
    }
    #gridCards .doc-card .status-pill img{
        margin-right: 5px;
    }
    /* ==================================================== */
    /* ============== SEARCH PAGE TABLE CSS =====================*/
    /* ==================================================== */
    
    .search_result_page .main.admin_dashboard {
        padding: 20px;
    }
    .search_result_page .search_page_title{
      text-align: center;
      font-size: 28px;
    }
    .search_result_page .table-header{
      flex-direction: column;
      gap:20px;
    }
    .search_result_page .table-header .status_filter{
        padding: 8px 20px 8px 8px;
        font-size: 14px;
        background-position: 92% 57%;
            background-size: 15px;
    }
    .search_result_page .table-header .date_range_filter{
        background-position: 92% 57%;
            background-size: 15px;
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .search_result_page .table-header .table-header-action{
        width: 100%;
        gap: 10px;
    }
    .search_result_page .table-header .grid_list_filter{
        margin-left: auto;
    }
    .search_result_page .doc-table tr th.hide-mobile,
    .search_result_page .doc-table tr td.hide-mobile{
        display: none;
    }
    .search_result_page .doc-table thead tr th {
        font-size: 12px;
    }
    .search_result_page .doc-table tbody tr td:first-child span{
        width: auto;
    }
    .search_result_page .doc-table tbody tr td:first-child{
        padding-left: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .mobile_folder_name{
        display: block !important;
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url .copy_text{
        font-size:12px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .download-btn,
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .search_result_page .doc-table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc a:last-child,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        font-size: 14px;
        position: relative;
    }
    .search_result_page .doc-table tbody tr td{
        padding: 10px 6px;
        vertical-align:top;
    }
    .search_result_page .doc-table thead tr th:last-child{
        min-width: 120px;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        padding-right: 6px;

    }

    /*=====================  EDIT FOLDER NAME CSS ============================*/
    
  .edit_folder_page .edit_folder_title{
        font-size: 28px;
    }
    .edit_folder_table tbody td.folder-name-cell span{
            gap: 0px;
    }
    .edit_folder_table tbody td.folder-name-cell .folder-input{
        padding: 8px 10px;
        width: 133px;
        font-size: 14px;
    }
    .edit_folder_table tbody td.button-cell button{
        padding: 10px 14px;
            font-size: 14px;
    }
    .edit_folder_table thead tr th {
        font-size: 12px;
    }
    .edit_folder_table tbody tr td {
        padding: 14px 6px;
    }
    .edit_folder_table thead tr th:first-child,
    .edit_folder_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .edit_folder_table thead tr th:last-child{
        padding-right: 0px;
    }

    /* ===============================================================*/
    /* ================= ADD ADMIN USER FORM CSS===== ================ */
    /* ===============================================================*/
    .add_admin_user_page .main.admin_dashboard{
        padding-right: 20px;
        padding-left: 20px;
        justify-content: flex-start;
    }
    .add_admin_user_page .admin-user-form-card {
        width: 90%;
    }

    /* ===============================================================*/
    /* ================= Google Token =============================== */
    /* ===============================================================*/
    
    .token_page .main.admin_dashboard .token_container {
        width: 100%;
    }
    .token_container .token-stats{
        width: 100%;
    }
    .token-top{
        flex-direction: column;
    }
    .create-token-btn{
        margin-left: unset !important;
        font-size: 16px;
    }
    .token_container .title{
        font-size: 28px;
        text-align: center;
    }
    .token_container .token-stats .token-pill{
        flex-direction: column;
        gap: 5px;
        width: 33.33%;
    }
    .token_container .token-stats .token-pill .token_number{
        font-size: 20px;
    }
    .token_container .token-stats .token-pill span{
        font-size: 14px;
    }
    .token-card .token-row:nth-child(3){
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .token-card .token-row:nth-child(3) span:last-child{
        text-align: left;
    }
}

@media only screen and (min-width:569px) and (max-width:767px) {
    /*=====================  LOGIN Page CSS ============================*/
    .login-box {
        width: 60%;
    }

    /*=====================  SIDEBAR Page CSS ============================*/
    .layout{
        flex-direction: column;
    }
    .sidebar_mobile{
        display: flex !important;
        background: #322783;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        gap: 20px
    }
    #sidebar .sidebar{
        transition: transform 0.7s;
        transform: translateX(-120%);
        width: 100%;
            position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        z-index: 999;
        height: 100vh;
        overflow: auto;
    }
    .sidebar_mobile .sidebar-logo{
        width: 90%;
    }
    .sidebar_mobile .sidebar-logo a{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: 100px;
    }
    .sidebar_mobile .sidebar-logo a img{
        width: 56%;
    }
    .sidebar_mobile .mobile_menu{
        display: flex;
        cursor: pointer;
                width: 10%;
    }
    .sidebar_mobile .mobile_menu img{
        width: 30px;
    }
    #sidebar .sidebar .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #sidebar .sidebar .sidebar-logo .company_logo{
        display: flex;
    }
    #sidebar .sidebar .sidebar-logo .company_logo img{
        width: 55%;
    }
    #sidebar .sidebar .sidebar-logo .close_menu{
        display: flex !important;
    }
    #sidebar .sidebar .sidebar-logo .close_menu img{
        width: 40px;
    }
    .main.admin_dashboard{
        margin-left: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }


    /*=====================  DASHBOARD Page CSS ============================*/
    
    
    .topbar{
        flex-direction: column;
    }
    .admin_dashboard .topbar h1.desktop{
      display: none;
    }
    .admin_dashboard .topbar h1.mobile{
      display: block !important;
    }
    .admin_dashboard .topbar h1{
        text-align: center;
        font-size: 28px;
    }
    .admin_dashboard .topbar p{
        text-align: center;
        font-size: 16px;
    }
    .admin_dashboard .search{
        width: 100%;
    }
    .admin_dashboard .searchicon{
        bottom: 10px;
    }
    .search-dropdown {
        width: 100%;
    }
    .actions{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .action-card .action-card-title{
            font-size: 18px;
    }
    .action-card .action-card-description{
        font-size: 16px;
    }
    .action-card button a{
        font-size: 16px;
    }
    .overview .stats .stat{
        flex-direction: column;
        align-items: center;
        width: 33.33%;
    }
    .overview .stats .stat .numbers{
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .overview .stats .stat span{
        font-size: 14px;
        text-align: center;
    }
    .doc-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .documents .doc-card{
        padding: 20px;
    }
    .documents .folder-title{
        font-size: 22px;
    }
    .documents .file span{
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .documents .view-folder{
        font-size: 18px;
    }

    /*=====================  PAGEPLUCKER SCRAPER ============================*/
    
    .pageplucker_scraper .main.admin_dashboard{
    	justify-content: flex-start;
    	padding-top: 80px;
    }
    #pageplucker_scraper_form #urls{
    	        width: 80%;
        margin: auto;
                margin-bottom: 10px;
    }
    .pageplucker_scraper .pageplucker_scraper_title{
        font-size: 28px;
            margin-bottom: 10px;
    }
    .pageplucker_scraper .pageplucker_scraper_sub_title{
        font-size: 18px;
        width: 60%;
        margin: auto auto 30px auto;

    }
    #pageplucker_scraper_form .submit_button{
        font-size: 16px;
    }
    /*=====================  Scrap Success Page CSS ============================*/
    
    .scrap-success-page h2.page-title{
        flex-direction: column;
        text-align: center;
        font-size: 28px;
    }
    
    .scrap_success_page .scrap_success_table thead tr th{
        font-size: 12px;
    }
    .scrap_success_page .scrap_success_table tbody tr td:first-child span{
        width: auto;
    }
    
    .scrap_success_table tr th.hide-mobile,
    .scrap_success_table tr td.hide-mobile{
        display: none;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .status-pill{
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .download-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url .document_url{
            gap: 6px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .scrap_success_page .scrap_success_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child{
        width: 124px;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child .date-header-cell{
        gap:4px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .scrap_success_page .scrap_success_table{
            border-collapse: collapse;
    }
    .scrap_success_page .main.admin_dashboard{
        padding-right: 15px;
        padding-left: 15px;
    }
    .scrap_success_page .export_more_page_button{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .scrap_success_page .export_more_page_button a{
        font-size: 16px;
    }

    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE GRID CSS ============ */
    /* ==================================================== */
    
    .my_document_page .main.admin_dashboard{
            padding: 30px 20px 30px 20px;
    }
    .my_document_page .my_document_title{
        text-align: center;
        font-size: 28px;
    }
    .my_document_filter{
        flex-direction: column;
        gap:20px;
    }
    .my_document_filter .my_document_stats .my_document_stat{
        flex-direction: column;
                width: 33.33%;
    }
    .my_document_filter .my_document_stats{
        width: 100%;
    }
    .my_document_filter .my_document_stats .my_document_stat .numbers{
        font-size: 20px;
    }
    .my_document_filter .my_document_stats .my_document_stat span{
        font-size: 14px;
    }
    .my_document_filter .my_document_search{
        width: 100%;
    }
    .my_document_page .status_filter{
        padding: 8px 30px 8px 10px;
        font-size: 14px;
    }
    .my_document_page .date_range_filter{
        font-size: 14px;
        padding: 8px 22px 8px 8px;
    }
    .my_document_page .table-header-action{
        gap:10px;
    }
    .grid-cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
    }
    #gridCards .doc-card .doc-card-footer .date{
            font-size: 12px;
    }
    #gridCards .doc-card .doc-card-footer a{
        word-wrap: break-word;
    }
    #gridCards .doc-card .doc-card-footer{
        order: 4;
    }
    #gridCards .doc-card .status-pill{
        order: 3;
        font-size: 10px;
    }
    #gridCards .doc-card .doc-card-footer .links{
        background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        gap: 4px;
        width: max-content;
    }
    #gridCards .doc-card .doc-card-footer .links .copy_url{
        display: flex !important;
    }
    #gridCards .doc-card .download-pill{
        display: flex !important;
        order: 5;
        flex-direction: column;
        gap: 10px;
    }
    #gridCards .doc-card .download-pill a{
        color:  #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
                width: max-content;
    }
    .more_option_dropdown{
        min-width: auto;
    }


    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE TABLE CSS ============ */
    /* ==================================================== */

   .my_document_table tr th.hide-mobile,
    .my_document_table tr td.hide-mobile{
        display: none;
    }
    .my_document_page .my_document_table thead tr th{
      font-size: 12px;
    }
    .my_document_page .my_document_table thead tr th.title-row .desktop-title{
        display: none;
    }
    .my_document_page .my_document_table thead tr th.title-row .mobile-title{
        display: block !important;
    }
    .my_document_page .my_document_table tbody tr td:first-child span{
      width: auto;
    }
    .my_document_page .my_document_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success img{
        margin-right: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success {
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.danger{
        border-radius: 10px;
        background: #DE622A;
        color: #E6E6E6;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell a.doc_title{
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
                width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .my_document_page .my_document_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top
    }
    .my_document_page .my_document_table thead tr th:last-child{
        min-width: 110px;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        padding-right: 0px;
        position: relative;

    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .download-btn,
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
        width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc a:last-child,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
      padding-bottom: 0px;
      margin-bottom: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
    }

    /* ==================================================== */
    /* ============== SEARCH PAGE TABLE CSS =====================*/
    /* ==================================================== */
    
    .search_result_page .main.admin_dashboard {
        padding: 20px;
    }
    .search_result_page .search_page_title{
      text-align: center;
      font-size: 28px;
    }
    .search_result_page .table-header{
      flex-direction: column;
      gap:20px;
    }
    .search_result_page .table-header .status_filter{
        padding: 8px 20px 8px 8px;
        font-size: 14px;
        background-position: 92% 57%;
            background-size: 15px;
    }
    .search_result_page .table-header .date_range_filter{
        background-position: 92% 57%;
            background-size: 15px;
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .search_result_page .table-header .table-header-action{
        width: 100%;
        gap: 10px;
    }
    .search_result_page .table-header .grid_list_filter{
        margin-left: auto;
    }
    .search_result_page .doc-table tr th.hide-mobile,
    .search_result_page .doc-table tr td.hide-mobile{
        display: none;
    }
    .search_result_page .doc-table thead tr th {
        font-size: 12px;
    }
    .search_result_page .doc-table tbody tr td:first-child span{
        width: auto;
    }
    .search_result_page .doc-table tbody tr td:first-child{
        padding-left: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .mobile_folder_name{
        display: block !important;
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url .copy_text{
        font-size:12px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .download-btn,
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .search_result_page .doc-table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc a:last-child,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        font-size: 14px;
        position: relative;
    }
    .search_result_page .doc-table tbody tr td{
        padding: 10px 6px;
        vertical-align:top;
    }
    .search_result_page .doc-table thead tr th:last-child{
        min-width: 120px;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .documents .file{
                font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    /*=====================  EDIT FOLDER NAME CSS ============================*/
    .edit_folder_page .edit_folder_title{
        font-size: 28px;
    }
    .edit_folder_table tbody td.folder-name-cell span{
            gap: 0px;
    }
    .edit_folder_table tbody td.folder-name-cell .folder-input{
        padding: 8px 10px;
        width: 133px;
        font-size: 14px;
    }
    .edit_folder_table tbody td.button-cell button{
        padding: 10px 14px;
            font-size: 14px;
    }
    .edit_folder_table thead tr th {
        font-size: 12px;
    }
    .edit_folder_table tbody tr td {
        padding: 14px 6px;
    }
    .edit_folder_table thead tr th:first-child,
    .edit_folder_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .edit_folder_table thead tr th:last-child{
        padding-right: 0px;
    }

    /* ===============================================================*/
    /* ================= ADD ADMIN USER FORM CSS===== ================ */
    /* ===============================================================*/
    .add_admin_user_page .main.admin_dashboard{
        padding-right: 20px;
        padding-left: 20px;
        justify-content: flex-start;
    }
    .add_admin_user_page .admin-user-form-card {
        width: 60%;
    }

    /* ===============================================================*/
    /* ================= Google Token =============================== */
    /* ===============================================================*/
    
    .token_page .main.admin_dashboard .token_container {
        width: 100%;
    }
    .token-top{
        flex-direction: column;
    }
    .create-token-btn{
        margin-left: unset !important;
        font-size: 16px;
    }
    .token_container .title{
        font-size: 28px;
        text-align: center;
    }
    .token_container .token-stats .token-pill{
        flex-direction: column;
            gap: 5px;
    }
    .token_container .token-stats .token-pill .token_number{
        font-size: 20px;
    }
    .token_container .token-stats .token-pill span{
        font-size: 14px;
    }
    .token-card .token-row:nth-child(3){
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .token-card .token-row:nth-child(3) span:last-child{
        text-align: left;
    }
}
@media only screen and (min-width:768px) and (max-width:998px) {
    /*=====================  LOGIN Page CSS ============================*/
    
    .login-box {
        width: 66%;
    }
    .login-container{
        padding-top: 50px;
        align-items: flex-start;
        height: 100%;
    }

    /*=====================  SIDEBAR Page CSS ============================*/
    .layout{
        flex-direction: column;
    }
    .sidebar_mobile{
        display: flex !important;
        background: #322783;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        gap: 20px;
    }
    #sidebar .sidebar{
        transition: transform 0.7s;
        transform: translateX(-120%);
        width: 100%;
            position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        z-index: 999;
        height: 100vh;
        overflow: auto;
    }
    .sidebar_mobile .sidebar-logo{
        width: 90%;
    }
    .sidebar_mobile .sidebar-logo a{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-left: 100px;
    }
    .sidebar_mobile .sidebar-logo a img{
        width: 56%;
    }
    .sidebar_mobile .mobile_menu{
        display: flex;
        cursor: pointer;
                width: 10%;
    }
    .sidebar_mobile .mobile_menu img{
        width: 30px;
    }
    #sidebar .sidebar .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #sidebar .sidebar .sidebar-logo .company_logo{
        display: flex;
    }
    #sidebar .sidebar .sidebar-logo .company_logo img{
        width: 55%;
    }
    #sidebar .sidebar .sidebar-logo .close_menu{
        display: flex !important;
    }
    #sidebar .sidebar .sidebar-logo .close_menu img{
        width: 40px;
    }
    .main.admin_dashboard{
        margin-left: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    /*=====================  DASHBOARD Page CSS ============================*/
    
    
    .topbar{
        flex-direction: column;
    }
    .admin_dashboard .topbar h1.desktop{
      display: none;
    }
    .admin_dashboard .topbar h1.mobile{
      display: block !important;
    }
    .admin_dashboard .topbar h1{
        text-align: center;
    }
    .admin_dashboard .topbar p{
        text-align: center;
    }
    .admin_dashboard .search{
        width: 100%;
    }
    .admin_dashboard .searchicon{
        bottom: 10px;
    }
    .search-dropdown {
        width: 100%;
    }
    .actions{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .overview .stats .stat{
        flex-direction: column;
        align-items: center;
        width: 33.33%;
    }
    .overview .stats .stat .numbers{
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .overview .stats .stat span{
        font-size: 14px;
        text-align: center;
    }
    .doc-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .documents .doc-card{
        padding: 20px;
    }
    .documents .folder-title{
        font-size: 18px;
    }
    
    .documents .view-folder{
        font-size: 18px;
    }

    /*=====================  PAGEPLUCKER SCRAPER ============================*/
    
    .pageplucker_scraper .main.admin_dashboard{
        justify-content: flex-start;
        padding-top: 80px;
    }
    #pageplucker_scraper_form #urls{
                width: 80%;
        margin: auto;
                margin-bottom: 10px;
    }
    .pageplucker_scraper .pageplucker_scraper_title{
        font-size: 28px;
            margin-bottom: 10px;
    }
    .pageplucker_scraper .pageplucker_scraper_sub_title{
        font-size: 18px;
        width: 60%;
        margin: auto auto 30px auto;

    }
    #pageplucker_scraper_form .submit_button{
        font-size: 16px;
    }

    /*=====================  Scrap Success Page CSS ============================*/
    
    .scrap-success-page h2.page-title{
        text-align: center;
        font-size: 28px;
        justify-content: center;
    }
    
    .scrap_success_page .scrap_success_table thead tr th{
        font-size: 12px;
    }
    .scrap_success_page .scrap_success_table tbody tr td:first-child span{
        width: auto;
    }
    
    .scrap_success_table tr th.hide-mobile,
    .scrap_success_table tr td.hide-mobile{
        display: none;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .status-pill{
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .download-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url .document_url{
            gap: 6px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .scrap_success_page .scrap_success_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child{
        width: 124px;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child .date-header-cell{
        gap:4px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .scrap_success_page .scrap_success_table{
            border-collapse: collapse;
    }
    .scrap_success_page .main.admin_dashboard{
        padding-right: 15px;
        padding-left: 15px;
    }
    .scrap_success_page .export_more_page_button{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .scrap_success_page .export_more_page_button a{
        font-size: 16px;
    }


    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE GRID CSS ============ */
    /* ==================================================== */
    
    .my_document_page .main.admin_dashboard{
            padding: 30px 20px 30px 20px;
    }
    .my_document_page .my_document_title{
        text-align: center;
        font-size: 28px;
    }
    .my_document_filter{
        
        gap:20px;
    }
    
    .my_document_filter .my_document_stats{
        width: 100%;
    }
    .my_document_filter .my_document_stats .my_document_stat .numbers{
        font-size: 20px;
    }
    .my_document_filter .my_document_stats .my_document_stat span{
        font-size: 14px;
    }
    .my_document_filter .my_document_search{
        width: 100%;
    }
    .my_document_page .status_filter{
        padding: 8px 30px 8px 10px;
        font-size: 14px;
    }
    .my_document_page .date_range_filter{
        font-size: 14px;
        padding: 8px 22px 8px 8px;
    }
    .my_document_page .table-header-action{
        gap:10px;
    }
    .grid-cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
    }
    #gridCards .doc-card .doc-card-footer .date{
            font-size: 12px;
    }
    #gridCards .doc-card .doc-card-footer a{
        word-wrap: break-word;
    }
    #gridCards .doc-card .doc-card-footer{
        order: 4;
    }
    #gridCards .doc-card .status-pill{
        order: 3;
        font-size: 10px;
    }
    #gridCards .doc-card .doc-card-footer .links{
        background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
        gap: 4px;
    }
    #gridCards .doc-card .doc-card-footer .links .copy_url{
        display: flex !important;
    }
    #gridCards .doc-card .download-pill{
        display: flex !important;
        order: 5;
        flex-direction: column;
        gap: 10px;
        
    }
    #gridCards .doc-card .download-pill a{
        color:  #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
                width: max-content;
    }
    .more_option_dropdown{
        min-width: auto;
    }


    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE TABLE CSS ============ */
    /* ==================================================== */

    .my_document_table tr th.hide-mobile,
    .my_document_table tr td.hide-mobile{
        display: none;
    }
    .my_document_page .my_document_table thead tr th{
      font-size: 12px;
    }
    .my_document_page .my_document_table thead tr th.title-row .desktop-title{
        display: none;
    }
    .my_document_page .my_document_table thead tr th.title-row .mobile-title{
        display: block !important;
    }
    .my_document_page .my_document_table tbody tr td:first-child span{
      width: auto;
    }
    .my_document_page .my_document_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .on-mobile{
        display: flex !important;

    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success img{
        margin-right: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success {
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.danger{
        border-radius: 10px;
        background: #DE622A;
        color: #E6E6E6;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell a.doc_title{
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
                width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        font-size: 14px;
        position: relative;
    }

    .my_document_page .my_document_table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .my_document_page .my_document_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .my_document_page .my_document_table thead tr th:last-child{
        min-width: 110px;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        padding-right: 0px;

    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .download-btn,
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc a:last-child,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
      padding-bottom: 0px;
      margin-bottom: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown{
                top: 38px;
        right: 0;

    }


    /* ==================================================== */
    /* ============== SEARCH PAGE TABLE CSS =====================*/
    /* ==================================================== */
    
    .search_result_page .main.admin_dashboard {
        padding: 20px;
    }
    .search_result_page .search_page_title{
      text-align: center;
      font-size: 28px;
    }
    .search_result_page .table-header{
      flex-direction: column;
      gap:20px;
    }
    .search_result_page .table-header .status_filter{
        padding: 8px 20px 8px 8px;
        font-size: 14px;
        background-position: 92% 57%;
            background-size: 15px;
    }
    .search_result_page .table-header .date_range_filter{
        background-position: 92% 57%;
            background-size: 15px;
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .search_result_page .table-header .table-header-action{
        width: 100%;
        gap: 10px;
    }
    .search_result_page .table-header .grid_list_filter{
        margin-left: auto;
    }
    .search_result_page .doc-table tr th.hide-mobile,
    .search_result_page .doc-table tr td.hide-mobile{
        display: none;
    }
    .search_result_page .doc-table thead tr th {
        font-size: 12px;
    }
    .search_result_page .doc-table tbody tr td:first-child span{
        width: auto;
    }
    .search_result_page .doc-table tbody tr td:first-child{
        padding-left: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .mobile_folder_name{
        display: block !important;
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url .copy_text{
        font-size:12px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .download-btn,
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .search_result_page .doc-table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc a:last-child,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        font-size: 14px;
        position: relative;
    }
    .search_result_page .doc-table tbody tr td{
        padding: 10px 6px;
        vertical-align:top;
    }
    .search_result_page .doc-table thead tr th:last-child{
        min-width: 120px;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .documents .file{
                font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    /*=====================  EDIT FOLDER NAME CSS ============================*/
   .edit_folder_page .edit_folder_title{
        font-size: 28px;
    }
    .edit_folder_table tbody td.folder-name-cell span{
            gap: 0px;
    }
    .edit_folder_table tbody td.folder-name-cell .folder-input{
        padding: 8px 10px;
        width: 133px;
        font-size: 14px;
    }
    .edit_folder_table tbody td.button-cell button{
        padding: 10px 14px;
            font-size: 14px;
    }
    .edit_folder_table thead tr th {
        font-size: 12px;
    }
    .edit_folder_table tbody tr td {
        padding: 14px 6px;
    }
    .edit_folder_table thead tr th:first-child,
    .edit_folder_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .edit_folder_table thead tr th:last-child{
        padding-right: 0px;
    }

    /* ===============================================================*/
    /* ================= ADD ADMIN USER FORM CSS===== ================ */
    /* ===============================================================*/
    .add_admin_user_page .main.admin_dashboard{
        padding-right: 20px;
        padding-left: 20px;
        justify-content: flex-start;
    }
    .add_admin_user_page .admin-user-form-card {
        width: 60%;
    }

    /* ===============================================================*/
    /* ================= Google Token =============================== */
    /* ===============================================================*/
    
    .token_page .main.admin_dashboard .token_container {
        width: 100%;
    }
    .token-top{
        flex-direction: column;
    }
    .create-token-btn{
        margin-left: unset !important;
        font-size: 16px;
    }
    .token_container .title{
        font-size: 28px;
        text-align: center;
    }
    .token_container .token-stats .token-pill{
        flex-direction: column;
            gap: 5px;
    }
    .token_container .token-stats .token-pill .token_number{
        font-size: 20px;
    }
    .token_container .token-stats .token-pill span{
        font-size: 14px;
    }
    .token-card .token-row:nth-child(3){
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .token-card .token-row:nth-child(3) span:last-child{
        text-align: left;
    }
}
@media only screen and (min-width:999px) and (max-width:1199px) {
    /*=====================  LOGIN Page CSS ============================*/
    
    .login-box {
        width: 55%;
    }


    /*=====================  DASHBOARD Page CSS ============================*/

    .main.admin_dashboard {
	    padding-right: 20px;
	    padding-left: 20px;
	}
	.action-card {
	    gap: 10px;
	    padding: 15px;
	}
	.topbar{
        flex-direction: column;
    }
    .admin_dashboard .topbar h1{
        text-align: center;
        font-size: 28px;
    }
    .admin_dashboard .topbar p{
        text-align: center;
        font-size: 16px;
    }
    .admin_dashboard .search{
        width: 100%;
    }
    .admin_dashboard .searchicon{
        bottom: 10px;
    }
    .search-dropdown {
        width: 100%;
    }
    .action-card .action-card-title{
        font-size: 18px;
    }
    .action-card .action-card-description{
        font-size: 16px;
    }
    .action-card button a{
        font-size: 16px;
    }
    .action-card .action-card-left img {
        width: 84px;
    }
    .action-card button{
        padding: 10px 14px;
    }
    .generate-token-card.action-card .action-card-left img {
        width: 84px;
    }
    .overview .stats .stat span{
        font-size: 16px;
    }
    .doc-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /*=====================  PAGEPLUCKER SCRAPER ============================*/
 
    #pageplucker_scraper_form #urls{
    	width: 80%;
        margin: auto;
        margin-bottom: 10px;
    }
    .pageplucker_scraper .main.admin_dashboard{
    	justify-content: flex-start;
    	padding-top: 100px;
    }
    .pageplucker_scraper .pageplucker_scraper_title{
        font-size: 28px;
    }
    .pageplucker_scraper .pageplucker_scraper_sub_title{
        font-size: 18px;
    }

    /*=====================  Scrap Success Page CSS ============================*/
    
    .scrap-success-page h2.page-title{
        text-align: center;
        font-size: 28px;
        justify-content: center;
    }
    
    .scrap_success_page .scrap_success_table thead tr th{
        font-size: 12px;
    }
    .scrap_success_page .scrap_success_table tbody tr td:first-child span{
        width: auto;
    }
    
    .scrap_success_table tr th.hide-mobile,
    .scrap_success_table tr td.hide-mobile{
        display: none;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .status-pill{
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .action_cell_links .download-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.title-cell .doc-url .document_url{
            gap: 6px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .scrap_success_page .scrap_success_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child{
        width: 124px;
    }
    .scrap_success_page .scrap_success_table thead tr th:last-child .date-header-cell{
        gap:4px;
    }
    .scrap_success_page .scrap_success_table tbody tr td.date-cell{
        padding-right: 6px;

    }
    .scrap_success_page .scrap_success_table{
            border-collapse: collapse;
    }
    .scrap_success_page .main.admin_dashboard{
        padding-right: 15px;
        padding-left: 15px;
    }
    .scrap_success_page .export_more_page_button{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .scrap_success_page .export_more_page_button a{
        font-size: 16px;
    }
    /* ==================================================== */
    /* ================= MY DOCUMENT PAGE ================= */
    /* ==================================================== */

    .my_document_page .main.admin_dashboard{
        padding-right: 20px;
        padding-left: 20px;
    }
    #gridCards .doc-card .doc-card-footer{
        order: 4;
    }
    #gridCards .doc-card .status-pill{
        order: 3;
        font-size: 10px;
    }
    #gridCards .doc-card .doc-card-footer .links{
        background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        gap: 4px;
        width: max-content;

    }
    #gridCards .doc-card .doc-card-footer .links .copy_url{
        display: flex !important;
    }
    #gridCards .doc-card .download-pill{
        display: flex !important;
        order: 5;
        flex-direction: column;
        gap: 10px;
        
    }
    #gridCards .doc-card .download-pill a{
        color:  #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6;
        border-radius: 50px;
        padding: 5px 10px;
                width: max-content;
    }

    /* ==================================================== */
    /* ============== MY DOCUMENT PAGE TABLE CSS ============ */
    /* ==================================================== */
    .my_document_filter .my_document_stats .my_document_stat .numbers{
            font-size: 20px;
    }
    .my_document_filter .my_document_stats .my_document_stat span{
        font-size: 14px;
    }
    .my_document_page .my_document_title{
        font-size: 28px;
    }
    .my_document_table tr th.hide-mobile,
    .my_document_table tr td.hide-mobile{
        display: none;
    }
    .my_document_page .my_document_table thead tr th{
      font-size: 12px;
    }
    .my_document_page .my_document_table thead tr th.title-row .desktop-title{
        display: none;
    }
    .my_document_page .my_document_table thead tr th.title-row .mobile-title{
        display: block !important;
    }
    .my_document_page .my_document_table tbody tr td:first-child span{
      width: auto;
    }
    .my_document_page .my_document_table tbody tr td:first-child{
        padding-left: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .on-mobile{
        display: flex !important;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success img{
        margin-right: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.success {
        border-radius: 10px;
        background: #62B8A6;
        color: #fff;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge.danger{
        border-radius: 10px;
        background: #DE622A;
        color: #E6E6E6;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 3px 10px;
        margin-bottom: 5px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .badge{
        margin-right: 4px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell a.doc_title{
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
                width: max-content;
    }
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        font-size: 14px;
    }
    .my_document_page .my_document_table tbody tr td{
            padding: 10px 6px;
            vertical-align: top
    }
    .my_document_page .my_document_table thead tr th:last-child{
        min-width: 110px;
    }
    .my_document_page .my_document_table tbody tr td.date-cell{
        padding-right: 0px;
        position: relative;

    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .download-btn,
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }

    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc a:last-child,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
      padding-bottom: 0px;
      margin-bottom: 0px;
    }
    .my_document_page .my_document_table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .my_document_page .my_document_table tbody tr td.date-cell .download_doc .more_option_dropdown{
            top: 38px;
        right: 0;
        width: auto;
    }

    /* ==================================================== */
    /* ============== SEARCH PAGE TABLE CSS =====================*/
    /* ==================================================== */
    
    .search_result_page .main.admin_dashboard {
        padding: 20px;
    }
    .search_result_page .search_page_title{
      text-align: center;
      font-size: 28px;
    }
    .search_result_page .table-header{
      flex-direction: column;
      gap:20px;
    }
    .search_result_page .table-header .status_filter{
        padding: 8px 20px 8px 8px;
        font-size: 14px;
        background-position: 92% 57%;
            background-size: 15px;
    }
    .search_result_page .table-header .date_range_filter{
        background-position: 92% 57%;
            background-size: 15px;
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .search_result_page .table-header .table-header-action{
        width: 100%;
        gap: 10px;
    }
    .search_result_page .table-header .grid_list_filter{
        margin-left: auto;
    }
    .search_result_page .doc-table tr th.hide-mobile,
    .search_result_page .doc-table tr td.hide-mobile{
        display: none;
    }
    .search_result_page .doc-table thead tr th {
        font-size: 12px;
    }
    .search_result_page .doc-table tbody tr td:first-child span{
        width: auto;
    }
    .search_result_page .doc-table tbody tr td:first-child{
        padding-left: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .mobile_folder_name{
        display: block !important;
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url {
        display: flex !important;
        align-items: center;
        gap: 2px;
         background: #F5F4FB;
        padding: 2px 10px;
        border-radius: 6px;
                display: flex;
        align-items: center;
        justify-content: space-between;
        word-break: break-word;
        width: max-content;
    }
    .search_result_page .doc-table tbody tr td.title-cell .document_url a.document_copy_url{
        color: #7E76C8;
        font-family: "Red Hat Display";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: 5%;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url {
        display: flex;
    }
    .search_result_page .doc-table tbody tr td.title-cell .copy_url .copy_text{
        font-size:12px;
        color:#F18E41;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc{
        display: flex !important;
        gap: 5px;
        align-items: center;
        margin-top: 5px;
        position: relative;
    }
    
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .download-btn,
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .open-btn{
        color: #7E76C8;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        border: 1px solid #E6E6E6 !important;
        border-radius: 50px;
        padding: 5px 10px !important;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more{
            display: flex;
        border-radius: 6px;
        background: #F2F2F2;
        padding: 5px 5px;
        cursor: pointer;
    }
    .search_result_page .doc-table tbody tr td.date-cell .download_doc{
        display: flex !important;
        position: absolute;
        right: 0;
        bottom: 10px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown a,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown a{
        color: #1A1A1A;
        text-align: center;
        font-family: "Red Hat Display";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration: none;
        padding-bottom: 6px;
        border-bottom: 1px solid #999;
        margin-bottom: 7px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc a:last-child,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc a:last-child{
        border-bottom: 0;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .search_result_page .doc-table tbody tr td.title-cell .download_doc .more_option_dropdown,
    .search_result_page .doc-table tbody tr td.date-cell .download_doc .more_option_dropdown{
        top: 38px;
        right: 0;
        min-width: auto;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        font-size: 14px;
        position: relative;
    }
    .search_result_page .doc-table tbody tr td{
        padding: 10px 6px;
        vertical-align:top;
    }
    .search_result_page .doc-table thead tr th:last-child{
        min-width: 120px;
    }
    .search_result_page .doc-table tbody tr td.date-cell{
        padding-right: 6px;

    }

    /* ===============================================================*/
    /* ================= ADD ADMIN USER FORM CSS===== ================ */
    /* ===============================================================*/
    .add_admin_user_page .main.admin_dashboard{
        padding-right: 20px;
        padding-left: 20px;
        justify-content: flex-start;
                padding-top: 50px;
    }
    .add_admin_user_page .admin-user-form-card {
        width: 60%;
    }

    .token_page .main.admin_dashboard .token_container{
        width: 100%;
    }
}
@media only screen and (min-width:1200px) and (max-width:1366px) {
    /*=====================  LOGIN Page CSS ============================*/
    
    .login-box {
        width: 55%;
    }

    /*=====================  DASHBOARD Page CSS ============================*/
    .main.admin_dashboard {
	    padding-right: 30px;
	    padding-left: 30px;
	}
	.doc-grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
    /*=====================  token Page CSS ============================*/

 /* ===== TOP BAR ===== */
.token-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
      gap: 20px;
}

.token-stats {
  display: flex;
  gap: 10px;
}

.token-pill {
  /*background: #fff;*/
  /*border-radius: 30px;*/
  /*padding: 10px 18px;*/
  /*font-weight: 500;*/
  /*box-shadow: 0 2px 6px rgba(0,0,0,.06);*/
}

.create-token-btn {
  background: #ff8c42;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
      margin-left: auto;
}

/* ===== CARD ===== */
.token-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.token-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.token-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E6E6E6;
  font-size: 14px;
}

.token-row:last-child {
  border-bottom: none;
}

/* ===== STATUS BADGES ===== */
.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-active {
  background: #7b6cf6;
  color: #fff;
}

.status-inactive {
  background: #ff9f43;
  color: #fff;
}

/*img css*/
/* GRID LAYOUT */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 10px;
}

/* CARD */
.image-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* IMAGE */
.image-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

/* GOOGLE-LIKE HOVER EFFECT */
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.image-card:hover img {
  transform: scale(1.06);
}

/* CLICK FEEL */
.image-card a {
  display: block;
}

/* OPTIONAL: subtle border on hover */
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border 0.25s ease;
}

.image-card:hover::after {
  border: 1px solid #e0e0e0;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border 0.25s ease;
  pointer-events: none; /* 🔥 THIS FIXES CLICK */
}
