:root {
  /* --primary_color: #0f172a; */
  --primary_color: #1f2937;
  --primary_color_light: #0d2561;
  --shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --gray: rgb(107 114 128);
  --light_gray: rgb(194, 194, 194);

  /* --light_green: #41aa92; */
  --light_green: #22c55e;
  --border_color: #f2f2f2;
  --white: #ffffff;

  /* form color */

  --form_background_color: #2b2b2b;
}
body {
  /* background-color: rgba(246, 251, 255, 0.742); */
  background-color: #181818;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: 10px;
  box-sizing: content-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 10px;
  background-color: #e1e1e1; /* desired thumb color */
}
::-webkit-scrollbar-thumb {
  background-color: #8f8f8f;
}
a {
  cursor: pointer;
}
/* tabs css starts here */
/* fixed bottom-4 right-8 z-2
<div class="form__component" style="padding: 2rem" */

.ul_tabs {
  display: flex;
  padding-left: 0.1rem;
  padding-right: 1.25rem;
  margin-bottom: 2.5rem;
  margin-left: 0rem;
  overflow-x: auto;
  justify-content: flex-start;
  /* border-radius: 0.75rem; */
  /* border-bottom-width: 2px;
  border-color: #e5e7eb; */
  text-align: center;
  color: #ffffff;
  z-index: 90;
  gap: 20px;
}
@media (max-width: 640px) {
  .ul_tabs {
    margin-bottom: 2rem;
  }
}
.tabs {
  display: flex;
  padding: 0.3rem 0.4rem;
  border-radius: 0.4rem;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
  justify-content: center;
  border-bottom-width: 2px;
  border-color: transparent;
  font-weight: 500;
  color: white;
  font-size: 0.9rem;
  text-transform: capitalize;
  text-wrap: nowrap;
}

.tabs:hover {
  /* border-color: #9ca3af; */
  background-color: rgba(199, 199, 199, 0.164);
  color: #ffffff;
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
}

@media (max-width: 640px) {
  .tabs {
    font-size: 0.7rem;
  }
}

/* more options in cards */
.more-options {
  width: 15px;
  z-index: 10;
}
/* .card__component .card__header .more-options:active + ul {
  display: block;
} */
.more-options img {
  margin-bottom: 0;
}
.more-options:hover img {
  transform: scale(1.1);
}

.more-options:active img {
  transform: scale(0.95);
}

.more-options-list {
  right: 10px;
  width: max-content;
  top: 30px;
  z-index: 90;
}

.more-options-list-item {
  text-align: start;
  margin-bottom: 1rem;
  max-width: 100%;
  font-weight: 500;
}

.more-options-list-item:active {
  transform: scale(0.95);
}

.more-options-button:hover {
  transform: scale(1.05);
}
.more-options-button {
  /* text-wrap: wrap; */
  text-align: start;
}

/* action buttons for overview vm */
.vm_dashboard .more-options img {
  filter: invert(1);
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.vm_dashboard .more-options-list {
  right: 10px;
  width: max-content;
  bottom: -230px;
  z-index: 90;
}

/* loading css */
.loading {
  z-index: 10000;
  top: -50%;
  right: 50%;
  transform: translateX(50%);
  color: #333;
  padding: 1rem;
  position: fixed;
  transition: top 0.2s ease-in-out;
}

.show_loading {
  top: 0%;
}
.hide_loading {
  top: -50%;
  transition: top 0.1s ease-in;
}

/* notification css */
.success_notification {
  z-index: 10000;
  bottom: -50%;
  display: none;
  left: 50%;
  /* top: 50%; */
  transform: translate(-50%, -50%);
  color: #333;
  padding: 1rem;
  position: fixed;
  transition: top 0.5s ease-in-out;
}
.show_notification {
  bottom: 5%;
  display: block;
}
.hide_notification {
  bottom: -50%;
  display: none;
  transition: top 0.3s ease-in;
}

/* global components css starts form here  */

/* pagination css  starts form here */

.pagination_container {
  display: flex;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  margin-top: 2.5rem;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}
.pagination_container .pagination_container-box {
  display: flex;
  align-items: center;
}

.pagination_container .pagination_container-box .previous_button {
  padding: 1rem;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  border-width: 1px;
  border-color: #dc2626;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f9fafb;
  background-color: #dc2626;
}
.pagination_container .pagination_container-box .previous_button:hover {
  background-color: #ef4444;
}
.pagination_container .pagination_container-box .next_button {
  padding: 1rem;
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  border-width: 1px;
  border-right-width: 1px;
  border-color: #dc2626;
  width: 100%;
  color: #ffffff;
  background-color: #ffffff;
  background-color: #dc2626;
}

.pagination_container .pagination_container-box .next_button:hover {
  background-color: #ef4444;
}
.pagination_container .pagination_container-box .page_number_button {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #ffffff;
  background-color: transparent;
}
.pagination_container .pagination_container-box .page_number_button:hover {
  color: #ef4444;
}

.icon {
  width: 18px;
  transition: all;
  transition-duration: 0.3s;
}
.icon:hover {
  transform: scale(1.1);
}
.icon:active {
  transform: scale(0.8);
}

.add-button {
  /* background-color: var(--primary_color); */
  background-color: #d50c2d;
  max-width: fit-content;
  padding: 0.5rem 1.2rem;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  transition: all;
  /* margin-left: 0.5rem; */
  transition-duration: 0.3s;
  /* margin-left: 80vw !important; */
}
@media (max-width: 640px) {
  .add-button {
    font-size: 0.7rem;
    padding: 0.5rem 1.2rem;
    height: fit-content !important;
  }
}
.add-button:hover {
  /* box-shadow: var(--shadow); */
  transform: scale(1.05) !important;
}
.add-button:active {
  transform: scale(0.95);
}

/* button for forms */
.form-button {
  /* background-color: var(--primary_color) !important; */
  background-color: #d50c2d;
  padding: 0.5rem 1.2rem;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.3rem;
  margin-bottom: 0rem;
  margin-top: 2rem;
  transition: all;
  transition-duration: 0.3s;
}

.form-button:hover {
  /* box-shadow: var(--shadow); */
}
.form-button:active {
  transform: scale(0.95);
}

@media (max-width: 640px) {
  .form-button {
    margin-top: 0rem;
    font-size: 0.7rem;
  }
}

.pay-button {
  background-color: var(--light_green);
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 500;
  font-size: 0.7rem;
  border-radius: 0.2rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  transition: all;
  transition-duration: 0.3s;
}

.pay-button:hover {
  /* box-shadow: var(--shadow); */
}
.pay-button:active {
  transform: scale(0.95);
}
.view_invoice-button {
  /* background-color: var(--light_green); */
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--light_green);
  color: black;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 0.2rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  transition: all;
  transition-duration: 0.3s;
}

.view_invoice-button:hover {
  /* box-shadow: var(--shadow); */
}
.view_invoice-button:active {
  transform: scale(0.95);
}
.lock_unlock-button {
  /* background-color: var(--light_green); */
  padding: 0.5rem 1rem;
  /* border-bottom: 1px solid var(--light_green); */
  color: black;
  font-weight: 600;
  text-align: center;
  font-size: 0.8rem;
  border-radius: 0.2rem;
  /* margin-bottom: 0.5rem; */
  margin-top: 1rem;
  transition: all;
  transition-duration: 0.3s;
}
.lock_unlock-button img {
  width: 1.3rem;
  margin: auto;
}

.lock_unlock-button:hover {
  transform: scale(1.1);
}
.lock_unlock-button:active {
  transform: scale(0.9);
}
/* global components css ends  here  */

/* class for side bar */
nav {
  transition: all;
  z-index: 100;
  transition-duration: 0.3s;
  height: 100vh;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  background-color: #303030;
  width: fit-content;
}

nav:hover {
  width: 14rem;
}
nav ul li span {
  display: none;
}
nav:hover ul li span {
  display: inline-block;
}

nav ul li a {
  display: block;
  width: fit-content;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
}

nav:hover ul li a {
  width: 100%;
  cursor: pointer;
}

nav .nav__logo {
  width: inherit;
}
nav ul li {
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0 0.6rem;
  margin-top: 1rem;
  margin-bottom: -0.4rem;
  /* width: fit-content; */

  padding-left: 0.8rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0.15rem;
  border-bottom-left-radius: 0.15rem;
}

nav ul li:hover {
  /* border-left: 5px solid #e71134; */
  background-color: rgba(145, 145, 145, 0.137);
}
nav ul li:hover:not(".active") {
  border-radius: 0.5rem;
  background-color: rgba(145, 145, 145, 0.137);
}
nav ul .active {
  border-left: 3.5px solid #e71134;
  background-color: rgba(145, 145, 145, 0.137);
  color: white;
  opacity: 1;
  font-weight: 700;
  cursor: pointer;
}
nav ul .active img {
  filter: invert(1);
}

nav ul li img {
  filter: invert(1);
  width: 16px;
  display: inline-block;
  margin-right: 15px;
}

nav .toggle-icon {
  width: 20px;
  position: absolute;
  display: none;
  /* margin-top: 10rem; */
  top: 50%;
  right: -20px;
  filter: invert(1);
  background-color: white;
  border-radius: 60%;
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  nav .toggle-icon {
    display: block;
  }

  nav {
    margin-left: -160px;
  }
  nav:hover {
    margin-left: 0px;
  }
  nav ul li span {
    display: inline-block;
  }
  nav ul li a {
    width: 100%;
    cursor: pointer;
  }
}

/* css for topbar starts form here here */
header {
  position: fixed;
  top: 0;
  color: white;
  z-index: 200;
}
header h1 {
  margin: auto 0;
}
header img {
  filter: invert(1);
}
/* css for topbar ends  here */

main {
  scrollbar-width: 1px;
  overflow: auto;
  margin: 1rem;
  margin-top: 3.8rem;
  padding: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 10rem;
}

@media (max-width: 640px) {
  main {
    margin-top: 3.8rem;
    margin-left: 0rem;
    margin-right: 0.5rem;
    height: 100vh;
    padding: 0rem;
    padding-left: 0.7rem !important;
  }
}

/* css for table components starts form here */

.table__components {
  background-color: #303030cb;
  padding: 2rem;
  /* box-shadow: var(--shadow); */
  border-radius: 0.5rem;
}

@media (max-width: 768px) {
  .table__components {
    overflow: auto;
  }
}
.table__components h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: white;
}

.table__components img {
  min-width: 1rem;
  filter: invert(1);
}
.table__components table {
  border-spacing: 10px;
  border-spacing: 10px;
  border-spacing: 10px;
}
.table__components thead th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-width: 1px;
  background-color: #303030;

  border-style: none;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-align: start;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  color: white;
}
@media (max-width: 640px) {
  .table__components thead th {
    font-size: 0.65rem;
    font-weight: 600;
  }
}

.table__components tbody th {
  padding: 1rem;

  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: start;
  vertical-align: middle;
  white-space: nowrap;
  color: white;
}
@media (max-width: 640px) {
  .table__components tbody th {
    font-size: 0.65rem;
  }
}
.table__components tbody td {
  padding: 0.5rem 1rem;
  /* color: white; */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: start;
  vertical-align: middle;
  white-space: nowrap;
  color: white;
}
@media (max-width: 640px) {
  .table__components tbody td {
    font-size: 0.65rem;
  }
}
.table__components tbody tr,
.table__components thead tr {
  border: 1px solid rgba(255, 255, 255, 0.114);
}
.table__components .more-options-list-item {
  color: black;
}

@media (max-width: 640px) {
  .table__components {
    padding: 2rem 1rem;
  }
  .table__components h3 {
    /* margin-bottom: 1rem; */
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
  }
}

/* css for table components end  here */

/* css for form components starts form here */
.menu-button {
  width: fit-content;
}
.modal {
  display: none;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200; /* Above the pseudo-element */
}

.modal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.655);
  /* backdrop-filter: blur(10px); */
  z-index: 1; /* Behind the modal content */
}

.modal .form__component {
  padding: 3rem;
  /* background-color: white; */
  background-color: var(--form_background_color);
  border-radius: 0.5rem;
  /* box-shadow: var(--shadow); */
  width: fit-content;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  z-index: 2;
}

.modal .acl_form_component {
  padding: 3rem;
  background-color: var(--form_background_color);
  border-radius: 0.5rem;
  width: fit-content;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0%);
  margin: auto;
  z-index: 2;
}
.apply_ssh_form_component {
  padding: 3rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  width: 38rem !important;
  margin: auto;
}

@media (max-width: 768px) {
  .modal .form__component {
    left: 30%;
    top: 20%;
    transform: translate(-10%, -10%);
  }
  .modal .acl_form_component {
    transform: translate(-7%, 0%);
  }
}
@media (max-width: 414px) {
  .modal .form__component {
    left: 17%;
    top: 20%;
    transform: translate(-10%, -10%);
  }
}
@media (max-width: 640px) {
  .modal .form__component {
    padding: 2.5rem 1.7rem;
  }
}

.form__component {
  padding: 3rem;
  background-color: #2b2b2b;
  border-radius: 0.5rem;
  /* box-shadow: var(--shadow); */
  width: fit-content;
  margin: auto;
  color: white;
}

.form__component form {
  max-width: 42rem;
}
.form__component h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.form__component p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .form__component h2 {
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 600;
  }
}
/* input under the form component */
.form_input_component {
  margin-top: 1rem;
  padding: 0 0.75rem;
  padding-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 640px) {
  .form_input_component {
    padding-bottom: 0.7rem;
    margin-top: 0.8rem;
  }
}
.form_input_component input,
.form_input_component textarea {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #5e5e5e;
  width: 17rem;
  line-height: 1.25;
  color: #dedada;
  /* background-color: #fafafa; */
  background-color: #1b1b1b;
  appearance: none;
}
.form_input_component input:focus,
.form_input_component textarea:focus {
  background-color: #1c1c1c !important;
}
@media (max-width: 640px) {
  .form_input_component input,
  .form_input_component textarea {
    padding: 0.5rem 0.7rem;
  }
  @media (max-width: 640px) {
    .form_input_component input::placeholder,
    .form_input_component textarea::placeholder {
      font-size: 0.8rem;
    }
  }
}
.form_input_component input:focus,
.form_input_component textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: white;
  border: 1px solid var(--gray);
}

.form_input_component label {
  display: block;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .form_input_component {
    padding-bottom: 0rem;
    width: 100%;
  }
}

.form_input_component select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #e5e7eb;
  line-height: 1.25;
  color: #374151;
  background-color: #f5f5f5;
}

.form_input_component .select_and_checkbox {
  display: flex;
  margin-bottom: 0.5rem;
}
.form_input_component .select_and_checkbox label {
  margin-bottom: 0;
}

.form_input_component input[type="checkbox"] {
  appearance: auto;
  width: 1rem;
  margin-right: 0.5rem;
}
.form_input_component input[type="radio"] {
  appearance: auto;
  width: 1rem;
  margin-right: 0.5rem;
}

/* css for acl forms */
.acl_container .form_input_component,
.acl_project_container .form_input_component,
.superadmin .form_input_component,
.superadmin_container .form_input_component,
.apply_ssh_container .form_input_component {
  display: flex;
  flex-direction: row-reverse;
  width: fit-content;
}

@media (max-width: 1024px) {
  /* .form__component#create_server_form {
    margin: 2.8rem !important;
  } */
}
@media (max-width: 640px) {
  .form__component#create_server_form {
    margin: 2rem 1rem !important;
  }
}
/* .form_input_component select:active {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(219, 219, 219);
} */

.small_form_input_component {
  padding: 0 0.75rem;
  opacity: 0.5;
  margin-top: 1rem;
  padding-bottom: 1.5rem;
  width: 100%;
}
.small_form_input_component input {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #e5e7eb;
  width: 100%;
  line-height: 1.25;
  color: #374151;
  /* background-color: #e5e7eb; */
  background-color: #fafafa;

  appearance: none;
}
.small_form_input_component label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #374151;
  text-transform: uppercase;
}
.small_form_input_component input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: white;
  border: 1px solid var(--gray);
}

@media (min-width: 768px) {
  .small_form_input_component {
    padding-bottom: 0rem;
    width: 33%;
  }
}

.large_form_input_component {
  padding: 0 0.75rem;
  padding-bottom: 1.5rem;
  width: 100%;
}

.large_form_input_component input {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: #e5e7eb;
  width: 100%;
  line-height: 1.25;
  color: #374151;
  background-color: #fafafa;
  appearance: none;
}
.large_form_input_component label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #374151;
  text-transform: uppercase;
}
.large_form_input_component input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: white;
  border: 1px solid var(--gray);
}

@media (min-width: 768px) {
  .large_form_input_component {
    padding-bottom: 0rem;
  }
}

/* css for form components end here */

/* css for cards components in project starts form  here */
/* .card__component {
  background-color: white;
  max-width: 25rem;
  box-shadow: var(--shadow);
  border-radius: 0.5rem;
  overflow: hidden;
   text-align: start;
  width: 16rem;
  border-bottom: 1.2rem solid var(--light_gray);
  transition: all;
  transition-duration: 0.3s;
} */
.project__dashboard .form_input_component {
  width: 140%;
}
.project__dashboard .form_input_component #project_name {
  width: 20rem;
}
@media (max-width: 640px) {
  .project__dashboard .form_input_component {
    width: 100% !important;
  }
  .project__dashboard .form_input_component #project_name {
    margin-bottom: 2rem;
    width: 15rem !important;
  }
}
.card__component {
  background: rgb(68, 68, 68);
  background: linear-gradient(
    184deg,
    rgba(68, 68, 68, 1) 0%,
    rgba(28, 28, 28, 1) 100%
  );
  border-radius: 0.5rem;
  overflow: visible;
  text-align: start;
  width: 100%;

  transition: all;
  transition-duration: 0.3s;
}
.card__component:hover {
  opacity: 0.9;
}
.add__card__component {
  position: relative;
  opacity: 0.7;
  border-radius: 0.5rem;
  overflow: visible;
  text-align: start;
  width: 100%;
  height: 10.5rem;
  border: 3px dotted var(--light_gray);

  transition: all;
  transition-duration: 0.3s;
}
.add__card__component:hover {
  opacity: 1;
}
.add__card__component:active {
  box-shadow: none;
}

.add__card__component .add__card__button {
  position: absolute;
  color: white;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1rem;
  font-weight: 600;
}

.card__component .card__header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card__component .card__header h2 {
  margin-bottom: 0rem;
  font-size: 1.25rem;
  color: white;
  line-height: 1.75rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: capitalize;
}
.card__component img {
  filter: invert(1);
}

/* more options in cards */
.card__component .card__header .more-options {
  width: 15px;
}
/* .card__component .card__header .more-options:active + ul {
  display: block;
} */
.card__component .card__header .more-options img {
  margin-bottom: 0;
}
.card__component .card__header .more-options:hover img {
  transform: scale(1.1);
}
.card__component .card__header .more-options:active img {
  transform: scale(0.95);
}
.card__component .card__header .more-options-list {
  right: 20px;
  width: 5rem !important;
  bottom: -90px;
}

.card__component .card__header .more-options-list-item {
  text-align: start;
  margin-bottom: 1rem;
  font-weight: 500;
}
.card__component .card__header .more-options-list-item:active {
  transform: scale(0.95);
}

/* more options in cards ends here */

.card__component .card__header img {
  width: 2rem;
  margin-bottom: 1rem;
}
.card__component .card__header p {
  font-size: 0.7rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: white;
  opacity: 0.6;
}
.card__component .card__footer button {
  margin-right: 0.5rem;
  margin-bottom: 0rem;
  color: firebrick;
}
.card__component .card__footer {
  padding-left: 1.2rem;
  padding-right: 1.5rem;
  padding-top: 0rem;
}

/* ************************************************************** */
/* ************************************************************** */
/* css for limits card */
.resources__card-body {
  padding: 2.5rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 30rem;
  background-color: #262626;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all;
  transition-duration: 0.3s;
}

@media (max-width: 768px) {
  .resources__card-body {
    padding: 1rem;
    border-radius: 0.7rem;
    width: 100%;
  }
}

.resources__card-body .resources__card-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.resources__card-body .resources__card-heading p {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: white;
}
.resources__card-body .resources__cards-numbers {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: left;
  color: white;
}

.resources__card-body .projects__percentage-container {
  width: 100%;
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* graph */
.Graphcontainer {
  width: 100%;
  height: 300px;
  margin: auto;
  padding: 50px 0;
}

.Graphcontainer canvas {
  display: block;
  max-width: 100%;
  height: 500px;
}

/* css for create vm slider */
#range-slider__input {
  /* -webkit-appearance: none;
  appearance: none; */
  width: 100%;
  height: 6px;
  background: #f00; /* Red color for the track */
  border-radius: 3px;
  outline: none;
  /* Adjust these styles for the thumb */
  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #b3b3b3; /* White color for the thumb */
    border-radius: 50%;
    cursor: pointer;
  }
}

#create_server_form .selected-summary a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: -2rem;

  padding: 1rem 2rem;
}
#create_server_form .selected-summary a:hover {
  background-color: #474747;
}
#create_server_form .selected-summary a img {
  max-width: 1.3rem;
  max-height: 1.3rem;
}
#create_server_form .selected-summary a span {
  font-size: 0.8rem;
  font-weight: 600;
}
#create_server_form .selected-summary a h4 {
  font-size: 1rem;
  font-weight: 500;
}

.loc{
  color: white;
}

.im{
  background-color: grey;
  border-radius: 50%;
  /*opacity: 0.5;*/
  padding: 3px;
}