/* Content Variables */
/* Header Variables */
/* Login Variables */
/* Form Variables */
/* Button Variables */
* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

body, html {
  position: relative;
  min-height: 100%;
  background-color: #f3f4f7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: #474b50;
}

main .form {
  display: flex;
  flex-flow: column;
  width: 500px;
  padding: 2px;
}
main .form input[type=text], main .form input[type=password], main .form input[type=datetime-local], main .form input[type=email], main .form input[type=number], main .form input[type=file], main .form textarea, main .form select {
  width: 100%;
  padding: 15px 5px;
  margin-bottom: 5px;
  border: 0;
  border-bottom: 1px solid #e4e6ed;
}
main .form input[type=text]:hover, main .form input[type=text]:active, main .form input[type=password]:hover, main .form input[type=password]:active, main .form input[type=datetime-local]:hover, main .form input[type=datetime-local]:active, main .form input[type=email]:hover, main .form input[type=email]:active, main .form input[type=number]:hover, main .form input[type=number]:active, main .form input[type=file]:hover, main .form input[type=file]:active, main .form textarea:hover, main .form textarea:active, main .form select:hover, main .form select:active {
  border-bottom: 1px solid #b6bcce;
}
main .form input[type=text]::placeholder, main .form input[type=password]::placeholder, main .form input[type=datetime-local]::placeholder, main .form input[type=email]::placeholder, main .form input[type=number]::placeholder, main .form input[type=file]::placeholder, main .form textarea::placeholder, main .form select::placeholder {
  color: #959595;
}
main .form textarea {
/* height: 200px;*/
}
main .form textarea.code-editor {
  margin: 15px 0;
/*  height: 400px;*/
  font-family: monospace;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  white-space: nowrap;
/*  overflow: auto;*/
  tab-size: 4;
  border: 1px solid #f0f1f5;
}
main .form input[type=checkbox] {
  width: auto;
  margin: 15px 0 25px 2px;
  transform: scale(1.2);
}
main .form label {
  position: relative;
  display: block;
  font-weight: 600;
}
main .form label .required {
  font-style: normal;
  color: #e26060;
}
main .form label input[type=text] {
  padding-right: 30px;
}
main .form label i {
  position: absolute;
  right: 4px;
  top: 20px;
  bottom: 0;
  font-size: 14px;
  margin-top: auto;
  margin-bottom: auto;
  color: #b6bcce;
}
main .form button {
  background-color: #e4e6ed;
  color: #5e6a8d;
  border: 0;
  padding: 5px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
main .form button:hover {
  background-color: #dbdee7;
}
main .form .comment {
  font-size: 14px;
  color: #888888;
  padding: 10px 0 5px;
  margin: 0;
}
main .form .hidden {
  display: none;
}
main .form .source ul {
  margin: 0;
  padding: 0 15px 15px 20px;
  font-size: 14px;
  color: #6f6f6f;
}
main .form .source ul li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  margin-bottom: 15px;
}
main .form .source ul li strong {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  padding: 0 0 5px 0;
  color: #555555;
}
main .form .source ul li em {
  font-size: 14px;
}
main .form .multiselect {
  position: relative;
  display: flex;
  flex-flow: wrap;
  border-bottom: 1px solid #e4e6ed;
  padding-bottom: 10px;
  margin: 15px 0 25px 0;
  margin-bottom: 25px;
}
main .form .multiselect > .item {
  display: inline-flex;
  border: 1px solid #e4e6ed;
  padding: 0 10px;
  height: 40px;
  margin: 0 5px 5px 0;
  font-size: 14px;
  justify-content: center;
  align-items: center;
}
main .form .multiselect > .item .remove {
  font-style: normal;
  cursor: pointer;
  font-size: 19px;
  margin-right: 3px;
  margin-top: -2px;
  color: #b6bcce;
}
main .form .multiselect > .item .remove:hover {
  color: #97a0ba;
}
main .form .multiselect input {
  height: 40px;
  width: 80px;
  flex-grow: 1;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
}
main .form .multiselect input:hover {
  border: 0;
}
main .form .multiselect .list {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  flex-flow: column;
  background-color: #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  max-height: 100px;
  overflow-y: auto;
  z-index: 1000000000;
}
main .form .multiselect .list span {
  display: flex;
  padding: 5px 7px;
  cursor: pointer;
}
main .form .multiselect .list span:hover {
  background-color: #fcfcfd;
}
main .form .multiselect:hover, main .form .multiselect:active {
  border-bottom: 1px solid #b6bcce;
}
main .form.size-md {
  max-width: 800px;
  width: 100%;
}
main .form.size-full {
  max-width: 100%;
  width: 100%;
}

.form {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.form .form-label {
  display: block;
  padding: 20px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #474b50;
}
.form .form-group {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form .form-group .form-icon-left, .form .form-group .form-icon-right {
  fill: #c1c6cb;
  width: 40px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}
.form .form-group .form-icon-left {
  left: 0;
}
.form .form-group .form-icon-left + .form-input {
  padding-left: 40px;
}
.form .form-group .form-icon-right {
  right: 0;
}
.form .form-group .form-icon-right + .form-input {
  padding-right: 40px;
}
.form .form-group:focus-within .form-icon-left {
  fill: #98a0a8;
}
.form .form-input {
  width: 100%;
  height: 43px;
  border: 1px solid #dee2e6;
  padding: 0 15px;
  border-radius: 4px;
  outline: 0;
  color: #000;
}
.form .form-input::placeholder {
  color: #98a0a8;
}
.form .form-input:focus {
  box-shadow: 0 0 0 3px #c7def7;
  border: 1px solid #75b3f1;
}
.form .form-link {
  color: #2a77eb;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.form .form-link:hover {
  color: #135ac5;
}
.form #remember_me {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #474b50;
  user-select: none;
}
.form #remember_me input {
  margin: 0 10px 0 0;
  transform: scale(1.1);
  opacity: 0.5;
}
.form #remember_me input:checked {
  opacity: 1;
}
.form p.register-link {
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 14px;
  color: #6b7179;
}
.form div.msg {
  font-size: 14px;
  font-weight: 500;
}
.form div.msg.success {
  padding: 0 0 20px 0;
  color: #0da74d;
}
.form div.msg.success .form-link {
  color: #0b6430;
}
.form div.msg.success .form-link:hover {
  color: #06361a;
}
.form div.msg.error {
  padding: 0 0 20px 0;
  color: #c21e13;
}
.form div.msg.error .form-link {
  color: #74160b;
}
.form div.msg.error .form-link:hover {
  color: #450d07;
}
.form .captcha {
  display: flex;
  padding-bottom: 20px;
}
.form .captcha img {
  min-width: 150px;
}
.form .captcha input {
  height: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .fb-btn, .form .gl-btn {
  display: flex;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  margin: 15px 0 0 0;
  padding: 15px;
  transition: background-color 0.2s;
}
.form .fb-btn svg, .form .gl-btn svg {
  position: absolute;
  left: 15px;
  fill: #fff;
}
.form .fb-btn:hover, .form .gl-btn:hover {
  color: #fff;
  transition: background-color 0.2s;
}
.form .fb-btn {
  background-color: #507CBF;
}
.form .fb-btn:hover {
  background-color: #426fb4;
}
.form .gl-btn {
  background-color: #d6523e;
}
.form .gl-btn:hover {
  background-color: #cf412c;
}
.form.form-small {
  max-width: 300px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  border: 0;
  background: #26313d;
  color: #FFFFFF;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  height: 38px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.1);
}
.btn:hover {
  background: #202934;
}
.btn.blue {
  background: #2873cf;
}
.btn.blue:hover {
  background: #266cc2;
}
.btn.green {
  background: #4ab46d;
}
.btn.green:hover {
  background: #46a966;
}
.btn.red {
  background: #be4949;
}
.btn.red:hover {
  background: #b74141;
}
.btn.alt {
  color: #75797e;
  border: 1px solid #d4dbde;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.03);
  background: #f1f3f4;
}
.btn.alt:hover {
  background: #eef1f2;
}
.btn.disabled {
  background: #b1b3b4;
}
.btn.disabled:hover {
  background: #a9abad;
}
.btn.small {
  padding: 8px 12px;
  font-size: 12px;
}
.btn .loader,
.btn .loader::after {
  width: 15px;
  height: 15px;
}
.btn .loader {
  margin: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.login, .register {
  display: flex;
  flex-flow: column;
  width: 450px;
  max-width: 95%;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 1px rgba(45, 54, 68, 0.05);
  border-radius: 5px;
  margin: 100px auto;
  padding: 35px;
}
.login .icon, .register .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 5px auto 0 auto;
  border-radius: 50%;
  background-color: #e2e7ee;
}
.login .icon svg, .register .icon svg {
  fill: #fff;
}
.login h1, .register h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding: 20px 0 10px 0;
  margin: 0;
}
.login .btn[type=submit], .register .btn[type=submit] {
  height: 42px;
}

.header {
  background-color: #2c3441;
  height: 60px;
  width: 100%;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}
.header .wrapper h1, .header .wrapper a, .header .wrapper label {
  display: inline-flex;
  align-items: center;
}
.header .wrapper h1 {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: normal;
}
.header .wrapper label, .header .wrapper input[type=checkbox] {
  display: none;
}
.header .wrapper label {
  cursor: pointer;
  position: relative;
  height: 40px;
  width: 50px;
  text-decoration: none;
  margin-right: 5px;
  border-radius: 5px;
}
.header .wrapper label::before, .header .wrapper label::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background-color: #616b78;
}
.header .wrapper label::after {
  top: 26px;
}
.header .wrapper label:hover, .header .wrapper label:active, .header .wrapper input[type=checkbox]:checked ~ label {
  background-color: #242a35;
}
.header .wrapper label:hover::before, .header .wrapper label:hover::after, .header .wrapper label:active::before, .header .wrapper label:active::after, .header .wrapper input[type=checkbox]:checked ~ label::before, .header .wrapper input[type=checkbox]:checked ~ label::after {
  background-color: #798493;
}
.header .wrapper .menu {
  display: flex;
  align-items: center;
}
.header .wrapper .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 15px;
  padding: 0 14px;
  margin: 0 3px;
  text-decoration: none;
  color: #87919e;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.header .wrapper .menu a svg {
  fill: #87919e;
  margin: 2px 8px 0 0;
}
.header .wrapper .menu a.alt {
  color: #cdd4df;
}
.header .wrapper .menu a.alt svg {
  fill: #cdd4df;
}
.header .wrapper .menu a:hover, .header .wrapper .menu a:active, .header .wrapper .menu a.active {
  color: #eaebec;
  background-color: #242a35;
}
.header .wrapper .menu a:hover svg, .header .wrapper .menu a:active svg, .header .wrapper .menu a.active svg {
  fill: #eaebec;
}
.header .wrapper .menu a:last-child {
  margin-right: 0;
}

/*new header content start*/

header .responsive-toggle {
  position: relative;
  display: inline-flex;
  height: 100%;
  width: 16px;
  text-decoration: none;
  margin-left: 20px;
}
header .responsive-toggle::before, header .responsive-toggle::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #afb2b9;
}
header .responsive-toggle::after {
  top: 31px;
}
header .responsive-toggle:hover::before, header .responsive-toggle:hover::after, header .responsive-toggle:active::before, header .responsive-toggle:active::after {
  background-color: #606c7e;
}
header .space-between {
  flex: 1;
}
header .dropdown {
  display: inline-flex;
  color: #4a5361;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}
header .dropdown i {
  font-size: 18px;
}
header .dropdown:hover, header .dropdown:active {
  color: #606c7e;
}
header .dropdown .profile-img {
  position: relative;
  padding: 0;
}
header .dropdown .profile-img span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
header .dropdown .profile-img span, header .dropdown .profile-img img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
header .dropdown .profile-img i {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
}
header .dropdown .profile-img i.online {
  background-color: #4ab46d;
}
header .dropdown .list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 150px;
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0px 2px 2px 1px rgba(45, 54, 68, 0.05);
}
header .dropdown .list a, header .dropdown .list div {
  display: block;
  text-decoration: none;
  color: #4a5361;
  padding: 10px 15px;
  font-size: 14px;
}
header .dropdown .list a:hover, header .dropdown .list a:active, header .dropdown .list div:hover, header .dropdown .list div:active {
  background-color: #fbfbfb;
}
header .dropdown .list a:hover .list, header .dropdown .list a:active .list, header .dropdown .list div:hover .list, header .dropdown .list div:active .list {
  display: flex;
  flex-flow: column;
  top: -1px;
  right: 100%;
}
header .dropdown:hover > .list, header .dropdown:active > .list {
  display: flex;
  flex-flow: column;
}
/* new header content end */

.content {
  width: 1000px;
  margin: 0 auto;
}
.content .page-title {
  display: flex;
  align-items: center;
  padding: 25px 0 10px 0;
}
.content .page-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c3441;
  color: #FFFFFF;
  margin-right: 20px;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  min-height: 55px;
  min-width: 55px;
}
.content .page-title .icon svg {
  fill: #fff;
}
.content .page-title h2 {
  margin: 0;
  padding: 0 0 7px 0;
  font-size: 20px;
  font-weight: 600;
  color: #53585e;
}
.content .page-title p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #777e86;
}
.content .block {
  box-shadow: 0px 0px 7px 1px rgba(45, 54, 68, 0.05);
  margin: 10px 0;
  padding: 5px;
  border-radius: 5px;
  background-color: #fff;
}
.content .block p {
  padding: 7px;
  margin: 0;
}
.content .profile-detail {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  padding: 5px 0;
}
.content .profile-detail strong {
  display: block;
  color: #92979e;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.pad-1 {
  padding: 5px;
}

.mar-1 {
  margin: 5px;
}

.pad-2 {
  padding: 10px;
}

.mar-2 {
  margin: 10px;
}

.pad-3 {
  padding: 15px;
}

.mar-3 {
  margin: 15px;
}

.pad-4 {
  padding: 20px;
}

.mar-4 {
  margin: 20px;
}

.pad-5 {
  padding: 25px;
}

.mar-5 {
  margin: 25px;
}

.pad-bot-1 {
  padding-bottom: 5px;
}

.pad-top-1 {
  padding-top: 5px;
}

.pad-left-1 {
  padding-left: 5px;
}

.pad-right-1 {
  padding-right: 5px;
}

.pad-x-1 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-y-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.mar-bot-1 {
  margin-bottom: 5px;
}

.mar-top-1 {
  margin-top: 5px;
}

.mar-left-1 {
  margin-left: 5px;
}

.mar-right-1 {
  margin-right: 5px;
}

.mar-x-1 {
  margin-left: 5px;
  margin-right: 5px;
}

.mar-y-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.pad-bot-2 {
  padding-bottom: 10px;
}

.pad-top-2 {
  padding-top: 10px;
}

.pad-left-2 {
  padding-left: 10px;
}

.pad-right-2 {
  padding-right: 10px;
}

.pad-x-2 {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-y-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mar-bot-2 {
  margin-bottom: 10px;
}

.mar-top-2 {
  margin-top: 10px;
}

.mar-left-2 {
  margin-left: 10px;
}

.mar-right-2 {
  margin-right: 10px;
}

.mar-x-2 {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-y-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pad-bot-3 {
  padding-bottom: 15px;
}

.pad-top-3 {
  padding-top: 15px;
}

.pad-left-3 {
  padding-left: 15px;
}

.pad-right-3 {
  padding-right: 15px;
}

.pad-x-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.pad-y-3 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.mar-bot-3 {
  margin-bottom: 15px;
}

.mar-top-3 {
  margin-top: 15px;
}

.mar-left-3 {
  margin-left: 15px;
}

.mar-right-3 {
  margin-right: 15px;
}

.mar-x-3 {
  margin-left: 15px;
  margin-right: 15px;
}

.mar-y-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.pad-bot-4 {
  padding-bottom: 20px;
}

.pad-top-4 {
  padding-top: 20px;
}

.pad-left-4 {
  padding-left: 20px;
}

.pad-right-4 {
  padding-right: 20px;
}

.pad-x-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-y-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mar-bot-4 {
  margin-bottom: 20px;
}

.mar-top-4 {
  margin-top: 20px;
}

.mar-left-4 {
  margin-left: 20px;
}

.mar-right-4 {
  margin-right: 20px;
}

.mar-x-4 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-y-4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pad-bot-5 {
  padding-bottom: 25px;
}

.pad-top-5 {
  padding-top: 25px;
}

.pad-left-5 {
  padding-left: 25px;
}

.pad-right-5 {
  padding-right: 25px;
}

.pad-x-5 {
  padding-left: 25px;
  padding-right: 25px;
}

.pad-y-5 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.mar-bot-5 {
  margin-bottom: 25px;
}

.mar-top-5 {
  margin-top: 25px;
}

.mar-left-5 {
  margin-left: 25px;
}

.mar-right-5 {
  margin-right: 25px;
}

.mar-x-5 {
  margin-left: 25px;
  margin-right: 25px;
}

.mar-y-5 {
  margin-top: 25px;
  margin-bottom: 25px;
}




/* new changes 12/15/24 - 2:21 pm */


.table {
  overflow-x: auto;
  padding: 0 10px;
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
.table table thead td {
  color: #9298a0;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 0;
}
.table table thead td a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}
.table table thead td svg {
  fill: #9298a0;
  margin-left: 5px;
}
.table table thead td:has(svg) {
  color: #4a5361;
  border-bottom: 1px solid #cfcfd2;
}
.table table thead td:has(svg) svg {
  fill: #4a5361;
}
.table table thead tr {
  border-bottom: 1px solid #f1f2f5;
}
.table table tbody tr:first-child td {
  padding-top: 10px;
}
.table table tbody td {
  padding: 8px 0;
}
.table table tbody td .green, .table table tbody td .red, .table table tbody td .grey, .table table tbody td .orange {
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 15px;
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #e8ebec;
  color: #8e9499;
}
.table table tbody td .green {
  background-color: #b8f7d5;
  color: #34aa6b;
}
.table table tbody td .red {
  background-color: #f7caca;
  color: #b64343;
}
.table table tbody td .orange {
  background-color: #f8eac2;
  color: #dea200;
}
.table table tbody td.no-results {
  text-align: center;
  color: #aaabad;
  line-height: 30px;
}
.table table tbody td.actions {
  padding: 0;
}
.table table tbody td.actions .table-dropdown {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.table table tbody td.actions .table-dropdown > svg {
  fill: #c5cad8;
}
.table table tbody td.actions .table-dropdown:hover, .table table tbody td.actions .table-dropdown:active {
  background-color: #f6f7f9;
}
.table table tbody td.actions .table-dropdown:hover > svg, .table table tbody td.actions .table-dropdown:active > svg {
  fill: #97a0ba;
}
.table table tbody .img {
  width: 40px;
  padding: 5px 10px 5px 0;
}
.table table tbody .img .profile-img {
  position: relative;
  padding: 0;
}
.table table tbody .img .profile-img span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.table table tbody .img .profile-img span, .table table tbody .img .profile-img img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.table table tbody .img .profile-img i {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.table table tbody .img .profile-img i.online {
  background-color: #4ab46d;
}
.table table tbody .img .profile-img i.offline {
  background-color: #c2c5c9;
}
.table table tbody .alt {
  font-size: 14px;
  color: #959595;
}

.table-dropdown-items {
  display: none;
  flex-flow: column;
  position: absolute;
  z-index: 99999;
  top: 100%;
  right: 0;
  width: 150px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 1px rgba(45, 54, 68, 0.15);
}
.table-dropdown-items a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4a5361;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f6f7f9;
}
.table-dropdown-items a .icon {
  width: 20px;
}
.table-dropdown-items a .icon svg {
  fill: #4a5361;
}
.table-dropdown-items a.red {
  color: #dd4d4d;
}
.table-dropdown-items a.red .icon svg {
  fill: #dd4d4d;
}
.table-dropdown-items a.green {
  color: #34aa6b;
}
.table-dropdown-items a.green .icon svg {
  fill: #34aa6b;
}
.table-dropdown-items a:hover, .table-dropdown-items a:active {
  background-color: #fbfbfb;
}
.table-dropdown-items a:last-child {
  border-bottom: 0;
}
.table-dropdown-items.show {
  display: flex;
}

/* end new changes */





@media screen and (max-width: 1000px) {
  .login, .register {
    margin: 20px auto;
    padding: 25px;
  }
  .header .wrapper {
    width: 100%;
  }
  .header .wrapper h1 {
    font-size: 18px;
    padding: 15px;
  }
  .header .wrapper label {
    display: inline-flex;
  }
  .header .wrapper .menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    flex-flow: column;
    background-color: #282f3b;
    justify-items: flex-start;
    align-items: flex-start;
    padding: 10px;
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu {
    display: flex;
  }
  .header .wrapper input[type=checkbox]:checked ~ .menu a {
    justify-content: flex-start;
    width: 100%;
    padding: 25px;
  }
  .content {
    width: 100%;
    padding: 5px 10px;
  }

  .responsive-hidden {
    display: none !important;
  }
  .responsive-width-100 {
    width: 100% !important;
    flex: auto !important;
    flex-basis: 100% !important;
  }
  .responsive-flex-column {
    flex-flow: column;
  }
  .responsive-flex-wrap {
    flex-flow: wrap;
  }
  .responsive-flex {
    display: flex;
  }
  aside.minimal + main {
    padding-left: 70px;
  }
  main {
    padding: 70px 7px 20px 7px;
  }
  main .content-header {
    max-width: 100%;
  }
  main .content-header form {
    padding-top: 10px;
  }
  main .content-header form .search input, main .content-header form > select {
  background-color: transparent;
  outline: none;
  border: none;
  height: 40px;
  width: 220px;
  border-bottom: 1px solid #d4d8e3;
  padding-right: 25px;
  margin-left: 10px;
  }
  
  main .content-header form .search input:hover, main .content-header form .search input:active, main .content-header form > select:hover, main .content-header form > select:active {
  border-bottom: 1px solid #b6bcce;
}
main .content-header form .search input::placeholder, main .content-header form > select::placeholder {
  color: #a7aec4;
}
main .content-header form > select {
  width: 150px;
}
main .content-header form > a {
  text-decoration: none;
  display: inline-flex;
  color: #5e6a8d;
  justify-self: center;
  align-items: center;
  padding: 0 5px;
}
main .content-header form > a:hover {
  color: #4a536e;
}
main .content-block {
  background-color: #fff;
  margin-top: 25px;
  padding: 15px;
  box-shadow: 0px 0px 6px 1px rgba(45, 54, 68, 0.05);
  overflow: hidden;
}
main .content-block .block-header {
  position: relative;
  border-bottom: 1px solid #f9fafb;
  margin-bottom: 20px;
  padding: 0 15px 15px 15px;
  margin-left: -15px;
  margin-right: -15px;
  font-size: 14px;
  font-weight: 500;
}
main .content-block .block-header i {
  display: inline-flex;
  height: 25px;
  width: 25px;
  padding-top: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #d5e7fa;
  color: #6e94ba;
  margin-right: 10px;
}
main .content-block.cover {
  height: calc(100vh - 200px);
}
main .content-block-wrapper {
  display: flex;
  width: 100%;
  padding-top: 25px;
}
main .content-block-wrapper .content-block {
  width: 100%;
  margin: 0 10px;
}
main .content-block-wrapper .content-block:first-child {
  margin-left: 0;
}
main .content-block-wrapper .content-block:last-child {
  margin-right: 0;
}
  main .dashboard {
    flex-flow: column;
  }
  main .dashboard .stat {
    width: 100%;
  }
  .responsive-pad-1 {
    padding: 5px;
  }
  .responsive-mar-1 {
    margin: 5px;
  }
  .responsive-pad-2 {
    padding: 10px;
  }
  .responsive-mar-2 {
    margin: 10px;
  }
  .responsive-pad-3 {
    padding: 15px;
  }
  .responsive-mar-3 {
    margin: 15px;
  }
  .responsive-pad-4 {
    padding: 20px;
  }
  .responsive-mar-4 {
    margin: 20px;
  }
  .responsive-pad-5 {
    padding: 25px;
  }
  .responsive-mar-5 {
    margin: 25px;
  }
  .responsive-pad-bot-1 {
    padding-bottom: 5px;
  }
  .responsive-pad-top-1 {
    padding-top: 5px;
  }
  .responsive-pad-left-1 {
    padding-left: 5px;
  }
  .responsive-pad-right-1 {
    padding-right: 5px;
  }
  .responsive-pad-x-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .responsive-pad-y-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .responsive-mar-bot-1 {
    margin-bottom: 5px;
  }
  .responsive-mar-top-1 {
    margin-top: 5px;
  }
  .responsive-mar-left-1 {
    margin-left: 5px;
  }
  .responsive-mar-right-1 {
    margin-right: 5px;
  }
  .responsive-mar-x-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .responsive-mar-y-1 {
    margin-left: 5px;
    margin-right: 5px;
  }
  .responsive-pad-bot-2 {
    padding-bottom: 10px;
  }
  .responsive-pad-top-2 {
    padding-top: 10px;
  }
  .responsive-pad-left-2 {
    padding-left: 10px;
  }
  .responsive-pad-right-2 {
    padding-right: 10px;
  }
  .responsive-pad-x-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .responsive-pad-y-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .responsive-mar-bot-2 {
    margin-bottom: 10px;
  }
  .responsive-mar-top-2 {
    margin-top: 10px;
  }
  .responsive-mar-left-2 {
    margin-left: 10px;
  }
  .responsive-mar-right-2 {
    margin-right: 10px;
  }
  .responsive-mar-x-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .responsive-mar-y-2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  .responsive-pad-bot-3 {
    padding-bottom: 15px;
  }
  .responsive-pad-top-3 {
    padding-top: 15px;
  }
  .responsive-pad-left-3 {
    padding-left: 15px;
  }
  .responsive-pad-right-3 {
    padding-right: 15px;
  }
  .responsive-pad-x-3 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .responsive-pad-y-3 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .responsive-mar-bot-3 {
    margin-bottom: 15px;
  }
  .responsive-mar-top-3 {
    margin-top: 15px;
  }
  .responsive-mar-left-3 {
    margin-left: 15px;
  }
  .responsive-mar-right-3 {
    margin-right: 15px;
  }
  .responsive-mar-x-3 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .responsive-mar-y-3 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .responsive-pad-bot-4 {
    padding-bottom: 20px;
  }
  .responsive-pad-top-4 {
    padding-top: 20px;
  }
  .responsive-pad-left-4 {
    padding-left: 20px;
  }
  .responsive-pad-right-4 {
    padding-right: 20px;
  }
  .responsive-pad-x-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .responsive-pad-y-4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .responsive-mar-bot-4 {
    margin-bottom: 20px;
  }
  .responsive-mar-top-4 {
    margin-top: 20px;
  }
  .responsive-mar-left-4 {
    margin-left: 20px;
  }
  .responsive-mar-right-4 {
    margin-right: 20px;
  }
  .responsive-mar-x-4 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .responsive-mar-y-4 {
    margin-left: 20px;
    margin-right: 20px;
  }
  .responsive-pad-bot-5 {
    padding-bottom: 25px;
  }
  .responsive-pad-top-5 {
    padding-top: 25px;
  }
  .responsive-pad-left-5 {
    padding-left: 25px;
  }
  .responsive-pad-right-5 {
    padding-right: 25px;
  }
  .responsive-pad-x-5 {
    padding-left: 25px;
    padding-right: 25px;
  }
  .responsive-pad-y-5 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .responsive-mar-bot-5 {
    margin-bottom: 25px;
  }
  .responsive-mar-top-5 {
    margin-top: 25px;
  }
  .responsive-mar-left-5 {
    margin-left: 25px;
  }
  .responsive-mar-right-5 {
    margin-right: 25px;
  }
  .responsive-mar-x-5 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .responsive-mar-y-5 {
    margin-left: 25px;
    margin-right: 25px;
  }
}


/* === DARK MODE OVERRIDES === */
html[data-theme="dark"] {
  --body-bg: #121418;
  --text-color: #e4e7ec;
  --heading-color: #ffffff;
  --muted-text-color: #9aa0ac;
  background-color: #121418;
  color: #e4e7ec;
}

html[data-theme="dark"] body {
  background-color: #121418 !important;
  color: #e4e7ec !important;
}

html[data-theme="dark"] .header {
  background-color: #1b1f24 !important;
}

html[data-theme="dark"] .menu a {
  color: #aeb4c0 !important;
}

html[data-theme="dark"] .menu a.active,
html[data-theme="dark"] .menu a:hover {
  background-color: #2a2f35 !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .content .block,
html[data-theme="dark"] .content-block,
html[data-theme="dark"] .login,
html[data-theme="dark"] .register {
  background-color: #1e2228 !important;
  color: #e4e7ec !important;
  box-shadow: none !important;
}

html[data-theme="dark"] table {
  color: #e4e7ec !important;
}

html[data-theme="dark"] table thead td {
  color: #bfc5d0 !important;
  border-bottom-color: #2a2f35 !important;
}

html[data-theme="dark"] table tbody tr:hover {
  background-color: #2a2f35 !important;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background-color: #13161a !important;
  color: #e7ecf2 !important;
  border-color: #2a2f35 !important;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #7c838f !important;
}

html[data-theme="dark"] .btn {
  background-color: #2f3742 !important;
  color: #ffffff !important;
}

html[data-theme="dark"] .btn:hover {
  background-color: #3d4652 !important;
}
.theme-toggle {
    background: var(--header-mobile-bg);
    color: var(--nav-link-alt-color);
    border: 1px solid var(--border-color-subtle);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    background: var(--nav-link-active-bg);
    color: var(--nav-link-active-color);
}

:root[data-theme="dark"] .theme-toggle i {
    color: #e3e6eb;
}

