@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600&display=swap");

:root {
  --main-color: #22baa0;
  --color-dark: #34425a;
  --text-grey: #b0b0b0;
}
.tr {
  background-color: #2ec9af;
  width: 100%;
}
.trs:hover {
  background-color: #ddf8f4;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
  font-family: "Merriweather", sans-serif;
}

#menu-toggle {
  display: none;
}

.sidebar {
  position: fixed;
  height: 100%;
  width: 10.32rem;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  transition: left 300ms;
}

.side-header {
  box-shadow: 0px 5px 5px -5px rgb(0 0 0 /10%);
  background: var(--main-color);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-header h3,
side-head span {
  color: #fff;
  font-weight: 400;
}

.side-content {
  height: calc(100vh - 60px);
  overflow: auto;
}
.side-content::-webkit-scrollbar {
  width: 5px;
}
.side-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.side-content::-webkit-scrollbar-thumb {
  background: #b0b0b0;
  border-radius: 10px;
}
.side-content::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

.profile {
  text-align: center;
  padding: 2rem 0rem;
}

.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
}

.profile-img {
  height: 3.125rem;
  width: 100%;
  display: inline-block;
  margin: 0 auto 0.5rem auto;
  background-size: cover;
  position: relative;
  object-fit: contain;
}

.profile h4 {
  color: #fff;
  font-weight: 500;
}

.profile small {
  color: #899dc1;
  font-weight: 600;
}

.side-menu ul {
  text-align: center;
}

.side-menu a {
  display: block;
  padding: 1.2rem 0rem;
}

.side-menu a.active {
  background: #2b384e;
}

.side-menu a.active span,
.side-menu a.active small {
  color: #fff;
}

.side-menu a span {
  display: block;
  text-align: center;
  font-size: 1.7rem;
}

.side-menu a span,
.side-menu a small {
  color: #899dc1;
}

#menu-toggle:checked ~ .sidebar {
  width: 3.75rem;
}

#menu-toggle:checked ~ .sidebar .side-header span {
  display: none;
}

#menu-toggle:checked ~ .main-content {
  margin-left: 3.75rem;
  width: calc(100% - 3.75rem);
}

#menu-toggle:checked ~ .main-content header {
  left: 60px;
}

#menu-toggle:checked ~ .sidebar .profile,
#menu-toggle:checked ~ .sidebar .side-menu a small {
  display: none;
}

#menu-toggle:checked ~ .sidebar .side-menu a span {
  font-size: 1.3rem;
}

.main-content {
  margin-left: 10.32rem;
  width: calc(100% - 10.32rem);
  transition: margin-left 300ms;
}

header {
  position: fixed;
  right: 0;
  top: 0;
  left: 10.32rem;
  z-index: 100;
  height: 3.75rem;
  box-shadow: 0px 5px 5px -5px rgb(0 0 0 /10%);
  background: #fff;
  transition: left 300ms;
}

.header-content,
.header-menu {
  display: flex;
  align-items: center;
}

.header-content {
  justify-content: space-between;
  padding: 1rem 1rem;
}

.header-content label:first-child span {
  font-size: 1.3rem;
  display: none;
}
/* @media screen and (min-width: 850px) and (max-width: 1300px) {
    .header-content label:first-child span {
        display: none;
    }
} */

.header-content label {
  cursor: pointer;
}

.header-menu {
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.header-menu label,
.header-menu .notify-icon {
  margin-right: 2rem;
  position: relative;
}

.header-menu label span,
.notify-icon span:first-child {
  font-size: 1.3rem;
}

.notify-icon span:last-child {
  position: absolute;
  background: var(--main-color);
  height: 1rem;
  width: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  right: -5px;
  top: -5px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}
 .dropdown {
        position: relative;
        display: inline-block;
      }

      .dropdown-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 30px;
        color: #333;
        margin-bottom: 5px;
      }

      .dropdown-menu {
        display: none;
        margin-bottom: 10px;
        position: absolute;
        right: 0;
        top: 35px;
        background-color: white;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 999;
        border-radius: 8px;
         border: 1px solid #ddd;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
      }

      .dropdown-menu a,
      .dropdown-menu button {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 15px;
        cursor: pointer;
      }

      .dropdown-menu a:hover,
      .dropdown-menu button:hover {
        background-color: #f1f1f1;
      }
/* .user {
  display: flex;
  align-items: center;
  outline: none;
  background-color: #22baa0;
  color: white;
  border: none;
  padding: 4px;
}
.user Button{
  outline: none;
    background-color: #22baa0;
    color: white;
    border: none;
    padding: 4px;
}
.user div,
.client-img {
  height: 2.5rem;
  width: 40px;
  margin-right: 1rem;
}

.user span:last-child {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.8rem;
}
.user1 {
  display: flex;
  align-items: center;
  outline: none;
  background-color: #22baa0;
  color: white;
  border: none;
  padding: 4px;
    margin-right: 10px;
}
.user1 Button{
  outline: none;
    background-color: #22baa0;
    color: white;
    border: none;
    padding: 4px;
}
.user1 Button a{
  color: white;
}
.user1 div,
.client-img {
  height: 2.5rem;
  width: 40px;
  margin-right: 1rem;
}

.user1 span:last-child {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.8rem;
} */

main {
  margin-top: 60px;
}

.page-header {
  padding: 1.3rem 1rem;
  background: #e9edf2;
  border-bottom: 1px solid #dee2e8;
}

.page-header h1,
.page-header small {
  color: #74767d;
}

.page-content {
  padding: 1.3rem 1rem;
  background: #f1f4f9;
}

.analytics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.card {
  box-shadow: 0px 5px 5px -5px rgb(0 0 0 / 10%);
  background: #fff;
  padding: 1rem;
  border-radius: 3px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-head h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}

.card-head span {
  font-size: 2.2rem;
  color: var(--text-grey);
}

.card-progress small {
  color: #777;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-indicator {
  margin: 0.7rem 0rem;
  height: 10px;
  border-radius: 4px;
  background: #e9edf2;
  overflow: hidden;
}

.indicator {
  height: 10px;
  border-radius: 4px;
}

.indicator.one {
  background: #22baa0;
}

.indicator.two {
  background: #11a8c3;
}

.indicator.three {
  background: #f6d433;
}

.indicator.four {
  background: #f25656;
}

.records {
  box-shadow: 0px 5px 5px -5px rgb(0 0 0 / 10%);
  background: #fff;
  border-radius: 3px;
}

.record-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add,
.browse {
  display: flex;
  align-items: center;
}

.add span {
  display: inline-block;
  margin-right: 0.6rem;
  font-size: 0.9rem;
  color: #666;
}

input,
button,
select {
  outline: none;
}

.add select,
.browse input,
.browse select {
  height: 35px;
  border: 1px solid #b0b0b0;
  border-radius: 3px;
  display: inline-block;
  width: 75px;
  padding: 0rem 0.5rem;
  margin-right: 0.8rem;
  color: #666;
}

.add button {
  background: var(--main-color);
  color: #fff;
  height: 37px;
  border-radius: 4px;
  padding: 0rem 1rem;
  border: none;
  font-weight: 600;
}

.browse input {
  width: 154px;
}

.browse select {
  width: 100px;
}

.table-responsive {
  width: 100%;
  overflow: auto;
}

table {
  border-collapse: collapse;
}

table thead tr {
  background: #e9edf2;
}

table thead th {
  padding: 1rem 0rem;
  text-align: left;
  color: #444;
  font-size: 0.9rem;
}

table thead th:first-child {
  padding-left: 1rem;
}

table tbody td {
  padding: 1rem 0rem;
  color: #444;
}

table tbody td:first-child {
  padding-left: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
}

table tbody tr {
  border-bottom: 1px solid #dee2e8;
}

.client {
  display: flex;
  align-items: center;
}

.client-img {
  margin-right: 0.5rem;
  border: 2px solid #b0b0b0;
  height: 5rem;
  width: 5rem;
}

.actions button {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 3px 2px 3px;
  border: 1px solid #1dac94;
  background-color: #22baa0;
  color: white;
}
.actionss button {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 7px 2px 7px;
  border: 1px solid #1dac94;
  background-color: #22baa0;
  color: white;
}

@media only screen and (max-width: 1200px) {
  .analytics {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

@media only screen and (max-width: 768px) {
  .analytics {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar {
    left: -165px;
    z-index: 90;
  }

  header {
    left: 0;
    width: 100%;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  #menu-toggle:checked ~ .sidebar {
    left: 0;
  }

  #menu-toggle:checked ~ .sidebar {
    width: 165px;
  }

  #menu-toggle:checked ~ .sidebar .side-header span {
    display: inline-block;
  }

  #menu-toggle:checked ~ .sidebar .profile,
  #menu-toggle:checked ~ .sidebar .side-menu a small {
    display: block;
  }

  #menu-toggle:checked ~ .sidebar .side-menu a span {
    font-size: 1.7rem;
  }

  #menu-toggle:checked ~ .main-content header {
    left: 0px;
  }

  table {
    width: 56.25rem;
  }
  .header-content label:first-child span {
  font-size: 1.3rem;
  display: block;
}
}

/* -----------------viewMore -page--------------------- */

.containerm {
  display: flex;
  flex-direction: row;
  max-width: 75rem;
  background-color: rgb(248, 247, 247);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-containerm {
  flex: 1;
  height: 18.75rem;
  padding: 5px;
}

.image-containerm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.text-containerm {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-containerm h1 {
  font-size: 2.5rem;
  margin: 0 0 0.625rem;
}

.text-containerm p {
  font-size: 1rem;
  color: #555;
  margin: 0 0 1.25rem;
}

.author-infom {
  display: flex;
  align-items: center;
}

.author-infoms p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .containerm {
    flex-direction: column;
    padding: 1.25rem;
  }

  .text-containerm h1 {
    font-size: 1.25rem;
  }

  .text-containerm p {
    font-size: 0.9rem;
  }
  .description {
    padding: 0.5rem;
  }
}
.description {
  padding: 1rem 3rem 1rem 3rem;
  font-size: 13px;
  color: #575454;
  background-color: rgb(248, 247, 247);
}
/* --------------------ALL FORM DESIGN -------------------------- */
.form {
  padding: 50px;
}
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 15%;
  transition: background-color 0.3s;
}

.form-group button:hover {
  background-color: #0056b3;
}
@media only screen and (max-width: 768px) {
  .form-group button {
    width: 30%;
  }
}
.preview-image {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
  display: none;
}
/* --------------------ALL FORM DESIGN -------------------------- */
ul li {
  color: gray;
}