@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;900&display=swap");

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
:root {
  --primary: #a48a2f;
  --secondary: #17181e;
  --light: #999;
  --dark: #111116;
  --lighter: #707683;
  --main-back: #fff;
  --hover-color: #a48a2f;
  --hover-sidebar-text: #f6f9ff;
}
.bg-primary {
  background-color: var(--primary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600 !important;
  line-height: 1.2;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
}
h4,
h5,
h6 {
  font-size: 1.125rem !important;
}
label {
  font-size: 0.813rem !important;
}
p {
  font-size: 0.75rem !important;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.pop-700{
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important; 
}
.main {
  min-height: 90vh;
}
.SignUpHead {
  position: relative;
  margin: 0;
  top: -10px;
  color: var(--light) !important;
}
.signUpColor {
  color: var(--primary) !important;
  text-decoration: none;
}
.regSin {
  color: var(--primary) !important;
}
.form-control:read-only {
  background-color: var(--main-back);
}
.form-label {
  margin-bottom: 0.625rem;
  font-size: 0.813rem !important;
  color: var(--dark);
}
.required-mark {
  color: red;
}
input {
  border: 1px solid var(--light) !important;
}
.phoneinline {
  display: flex;
  width: 100%;
}
input:focus {
  border: 1px solid var(--primary) !important;
  outline: none !important;
}

*::-webkit-input-placeholder {
  color: var(--light) !important;
  font-size: 0.813rem !important;
}
*:-moz-placeholder {
  /* FF 4-18 */
  color: var(--light) !important;
  opacity: 1;
  font-size: 0.813rem !important;
}
*::-moz-placeholder {
  /* FF 19+ */
  color: var(--light) !important;
  opacity: 1;
  font-size: 0.813rem !important;
}
*:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--light) !important;
  font-size: 0.813rem !important;
}
*::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--light) !important;
  font-size: 0.813rem !important;
}
*::placeholder {
  /* modern browser */
  color: var(--light) !important;
  font-size: 0.813rem !important;
}
.btn-primary {
  background: #a48a2f;
  border-color: #a48a2f;
  font-family: "Poppins", sans-serif !important;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--hover-color);
    pointer-events: none;
    background-color: var(--hover-colory);
    border-color: var(--hover-color);
    opacity: var(--hover-color);
}
.form-control {
  font-family: "Poppins", sans-serif !important;
  background-clip: padding-box;
  font-size: 0.75rem !important;
  border: 1px solid var(--light);
}
.form-control-lg {
  padding: 0.75rem 1rem;
}

.forgotColor a {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.75rem !important;
  text-decoration: none;
  color: var(--primary);
}
.registerText h2 {
  font-size: 40px;
  color: var(--dark);
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
}
.subText {
  font-size: 18px;
  color: var(--primary) !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  margin-bottom: 3px;
}
.registerText p {
  font-size: 15px;
  color: var(--lighter);
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 5px;
}
.btn:hover {
  background-color: var(--hover-color) !important;
  border-color: var(--hover-color);
}
.alert-success {
  font-size: 12px !important;
  font-family: "Poppins", sans-serif !important;
}
.alert-danger {
  font-size: 12px !important;
  font-family: "Poppins", sans-serif !important;
}
.eye-icon {
  float: right;
  margin-right: 10px;
  margin-top: -33px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #a48a2f;
}
.invalid-feedback {
  font-size: 10px !important;
  font-family: "Poppins", sans-serif !important;
}
.roundedd-border {
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.dash-btn {
  padding: 10px 5px !important;
  font-size: 10px;
}
table th {
  font-size: 12px;
}

.package_btn {
  border: none;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--hover-color);
  padding: 10px 20px;
  font-size: 12px;
  background-color: var(--primary);
  cursor: pointer;
  color: var(--main-back);
}
.package_btn:hover {
  transform: scale(1.05); /* Slightly enlarge the button */
  border-left-color: var(--hover-color); /* Change left border color */
  border-right-color: var(--primary); /* Change right border color */
  background-color: var(--hover-color);
}

/* Optionally add a focus effect for accessibility */
.package_btn:focus {
  outline: none; /* Remove default focus outline */
  transform: scale(1.05);
  border-left-color: var(--hover-color);
  border-right-color: var(--primary);
}
.form-check-input:checked {
  background-color: var(--primary);
}
.form-check label {
  font-size: 15px !important;
}
.pack-back {
  font-size: 20px !important;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--hover-color);
  padding: 10px 60px;
  font-size: 12px;
  background-color: var(--main-back);
  cursor: pointer;
  margin: 10px 0;
}
.pack-back:hover {
  transform: scale(1.05); /* Slightly enlarge the button */
  border-left-color: var(--hover-color); /* Change left border color */
  border-right-color: var(--primary); /* Change right border color */
}
.pack-back:focus {
  outline: none; /* Remove default focus outline */
  transform: scale(1.05);
  border-left-color: var(--hover-color);
  border-right-color: var(--primary);
}
.nrm-btn {
  font-size: 12px;
}
.font-15 {
  font-size: 12px;
}
.dropzone {
  height: 205px;
  position: relative;
  padding: 30px 15px;
}
.upload-input {
  position: relative;
  top: -63px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}
.dropzone h6 {
  position: absolute;
  width: 100%;
  bottom: 58px;
  left: 0;
  font-size: 0.938rem !important;
}
.dropzone p {
  position: absolute;
  width: 100%;
  bottom: 32px;
  margin: 0;
  color: #676767;
  font-size: 12px;
  font-weight: 500;
  left: 0;
}
li.select2-selection__choice {
  background: transparent !important;
}
.select2.select2-container.select2-container--default {
  background: #fff;
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid var(--light);
}
.select2-selection {
  background: #ffffff !important;
  border: none !important;
  height: unset !important;
}
.select2-selection__rendered {
  color: #000000 !important;
  line-height: 1.5 !important;
  font-size: 0.813rem !important;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  background-clip: padding-box;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: calc(1.5em + 1rem + 10px);
  padding: 0.75rem 1rem;
}
.select2-dropdown {
  background: #ffffff;
  border-color: #17181e;
}
.select2-search__field {
  background: #ffffff;
  border-color: #17181e !important;
  color: #000;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  color: #000000;
}
.select2black .select2.select2-container.select2-container--default {
  background: #ffffff;
}
.select2black .select2-selection {
  background: #ffffff !important;
}
.select2-results__option {
  font-size: 13px;
}
.table td,
.table th {
  vertical-align: middle;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
  padding: 0.875rem 1.125rem;
  font-size: 0.813rem;
}
@media (max-width: 1441px) {
  .table td,
  .ActivityLog-table tbody td,
  .form-select-sm,
  .form-control-sm {
    font-size: 0.688rem;
  }
}
.table tbody th.id,
.table tbody td.id {
  font-size: 0.938rem;
  font-weight: 600;
}
.lineh11 {
  line-height: 1.1 !important;
}
.lineh1 {
  line-height: 1 !important;
}
thead,
tbody,
tfoot,
tr,
td,
th {
  border: 0;
}
.table.table-dark thead tr th:first-child {
  border-top-left-radius: 1rem;
}
.table.table-dark thead tr th:last-child {
  border-top-right-radius: 1rem;
}

.table.table-dark thead tr th.radius0:first-child {
  border-top-left-radius: 0rem;
}
.table.table-dark thead tr th.radius0:last-child {
  border-top-right-radius: 0rem;
}
.table.table-dark tbody tr:last-child td.radius0:first-child,
.table.table-dark tbody tr:last-child th.radius0:first-child {
  border-bottom-left-radius: 0rem;
}
.table.table-dark tbody tr:last-child td.radius0:last-child {
  border-bottom-right-radius: 0rem;
}
.table.table-dark thead tr th.radius1:first-child {
  border-top-left-radius: 1rem;
}
.table.table-dark thead tr th.radius1:last-child {
  border-top-right-radius: 1rem;
}
.table.table-dark tbody tr:last-child td.radius1:first-child,
.table.table-dark tbody tr:last-child th.radius1:first-child {
  border-bottom-left-radius: 1rem;
}
.table.table-dark tbody tr:last-child td.radius1:last-child {
  border-bottom-right-radius: 1rem;
}
.table td,
.table th {
  vertical-align: middle;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
  padding: 0.875rem 1.125rem;
  font-size: 0.813rem;
}
.table th {
  padding: 1.125rem 1.125rem;
}
.table.table-sm td,
.table.table-sm th {
  padding: 0.875rem 1rem;
}
.table.table-sm th {
  padding: 1.125rem 1rem;
}
.table th {
  color: var(--dark);
  font-size: 0.813rem;
  font-weight: 400;
}
.table .form-check-input {
  /* margin: 0; */
  margin: 6px 8px;
}
.table b,
.table strong {
  font-weight: 500;
}
.ActivityLog-table {
  border-collapse: separate;
  border-spacing: 0 0.75em;
}
.ActivityLog-table thead th,
.ActivityLog-table tbody td,
.ActivityLog-table tbody th {
  background: none;
  padding: 0.75rem 1.125rem;
  vertical-align: middle;
}
.table.ActivityLog-table > :not(caption) > * > * {
  background: var(--secondary);
  border: 0;
  box-shadow: inherit;
  color: var(--bs-white);
}
.table.ActivityLog-table thead th {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}
.ActivityLog-table thead th:first-child,
.ActivityLog-table tbody th:first-child {
  border-radius: 10px 0 0 10px;
}
.ActivityLog-table thead th:last-child,
.ActivityLog-table tbody td:last-child {
  border-radius: 0 10px 10px 0;
}
.ActivityLog-table thead th {
  font-size: 0.813rem;
  font-weight: 400;
}
.ActivityLog-table tbody th {
  font-size: 0.813rem;
  font-weight: 600;
}
.ActivityLog-table tbody td {
  font-size: 0.813rem;
  font-weight: normal;
}
.ActivityLog-table thead th,
.ActivityLog-table tbody td,
.ActivityLog-table tbody th {
  background: none;
  padding: 0.75rem 1.125rem;
  vertical-align: middle;
}
.table-head {
  position: relative;
  z-index: 9;
}
.table-head form {
  position: relative;
  top: 15px;
}
.table-head .form-select {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 6' style='enable-background:new 0 0 10 6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23F37B4C;%7D%0A%3C/style%3E%3Cpath class='st0' d='M4.8,5.8L1.1,1.3C0.7,0.8,1,0,1.7,0l6.6,0c0.7,0,1,0.8,0.6,1.3L5.2,5.8C5.1,5.9,4.9,5.9,4.8,5.8z'/%3E%3C/svg%3E");
  color: var(--primary);
  background-color: inherit;
  border: 0;
  padding-right: 1.75rem;
}
.table-head .form-select:focus {
  box-shadow: inherit;
}
.table-head .form-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--bs-white);
}
.table-head .search {
  position: relative;
}
.table-head .search i {
  position: absolute;
  top: 6px;
  left: 5px;
  color: #979797;
  font-size: 1.125rem;
}
.table-head .form-control.form-control-sm {
  padding-left: 1.75rem;
  background: none;
  border: 0;
  width: 130px;
}
.table-head .form-select.dataTable-selector {
  display: inline;
  width: auto;
}
.table-head .dataTable-search:before {
  content: "\f002";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  top: 7px;
  left: 6px;
  color: #979797;
}
.table.table-dark.dataTable-table
  thead
  tr
  th:first-child
  .dataTable-sorter::after {
  display: none;
}
.table-user {
  border-radius: 50px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.dataTables_processing {
  background: none !important;
  color: #a48a2f !important;
  border: none !important;
}
.table-p15 {
  padding: 15px;
}
li.page-item {
  padding: 0 !important;
}
li.page-item .page-link {
  background: #21222a !important;
  border-color: #21222a !important;
}
.page-item.active .page-link {
  background-color: #a48a2f !important;
  border-color: #a48a2f !important;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  color: var(--dark) !important;
  font-size: 12px;
}
.dataTables_length select {
  background: transparent !important;
  color: var(--dark) !important;
}
.dt-buttons {
  padding-left: 10px;
}
button.dt-button {
  background: #a48a2f !important;
  color: #fff !important;
  padding: 2px 15px;
  font-size: 12px;
  font-weight: bold;
}
.dataTables_wrapper .dataTables_filter input {
  color: #999 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #a48a2f !important;
  color: #fff !important;
  border-color: #a48a2f !important;
}
@media (max-width: 1441px) {
  .table td,
  .ActivityLog-table tbody td,
  .form-select-sm,
  .form-control-sm {
    font-size: 0.688rem;
  }
}
@media (max-width: 1699px) {
  .table td,
  .table th,
  .ActivityLog-table tbody td,
  body,
  p,
  .form-select-sm,
  .form-control-sm {
    font-size: 12px;
  }
}
table.dataTable thead th,
table.dataTable thead td {
  font-size: 12px !important;
}
.client-card-height {
  height: 100px !important;
}

.deposit-box .image-part {
  background: var(--main-back);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 22px 22px 0px 0px;
  position: relative;
  z-index: 99;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--hover-color);
}
.deposit-box .link {
  background: var(--primary);
  border-radius: 0px 0px 15px 15px;
  position: relative;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.deposit-box .link a {
  font-size: 15px;
  color: var(--main-back);
  padding: 15px 0;
}
.deposit-box:hover .link {
  background: var(--hover-color);
}
.deposit-box .display-3 {
  line-height: 1.0665;
}
.deposit-box-sm .link a {
  padding: 12px 0;
}
.boxx-shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px !important;
}
.admins-btn {
  font-size: 10px;
}
.table .btn-xs {
  padding: 5px 8px;
  /* font-size: 11px; */
}
@media (max-width: 1441px) {
  .table td,
  .ActivityLog-table tbody td,
  .form-select-sm,
  .form-control-sm {
    font-size: 0.688rem;
  }
}
.btn {
  transition: 0.5s;
}
.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
.table-p15 {
  padding: 15px;
}
/* .even {
    background-color: #000 !important;
} */
.userIcon {
  font-size: 10px;
}
.ibCOndition {
  color: var(--primary);
}
@media (max-width: 1441px) {
  .Referral-Link {
    padding: 15px;
  }
}
.Referral-Link {
  background: var(--main-back);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.Referral-Link i {
  color: var(--white);
  top: -18px;
  font-size: 18px;
  left: 0;
  right: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50px;
  line-height: 40px;
  margin: 0 auto;
}
@media (max-width: 1699px) {
  .table-head .search i,
  .user-details .nav-tabs .nav-link.active,
  .user-details .nav-tabs .nav-item.show .nav-link {
    font-size: 1rem !important;
  }
}
.referral-tab .nav-tabs .nav-link.active,
.referral-tab .nav-tabs .nav-item.show .nav-link {
  font-size: 0.938rem;
  font-weight: 500;
}
.user-details .nav-tabs .nav-link.active,
.user-details .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-white);
  background-color: var(--primary);
  font-size: 12px !important;
}
.referral-tab .nav-tabs .nav-link {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  display: flex;
  line-height: 1.1;
  padding: 0.75rem 2.31rem;
}
.nav-tabs .nav-link {
  background: #f0f0f0;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 0.75rem 1.75rem;
  color: var(--bs-white);
}
.table-p15 {
  padding: 15px;
}
.news-img img {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-img p {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 18px 25px;
  margin: 0;
  color: var(--dark);
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.news-img {
  position: relative;
  height: 127px;
}
@media (max-width: 1441px) {
  .news-img p,
  .news-content {
    padding: 12px 15px;
  }
}
.news-content {
  padding: 20px 25px;
}
@media (max-width: 1699px) {
  .news-content p {
    font-size: 12px;
    line-height: 16px;
  }
}
.news-content p {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 8px;
  color: #a8a8a8;
}
.news-content a {
  color: #a8a8a8;
  -webkit-transition: 1s ease all;
  -o-transition: 1s ease all;
  -moz-transition: 1s ease all;
  -ms-transition: 1s ease all;
  transition: 1s ease all;
}
.notification-font {
  font-size: 15px !important;
  font-weight: 500 !important;
}
.mark-as-read {
  color: var(--primary);
}
.newsdetls img {
  width: 100%;
  margin-bottom: 15px;
}
.ib-box-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
}
.ib-box-text-para {
  font-size: 1rem;
  font-weight: 500;
  color: var(--lighter);
}
.package-boxx {
  background-color: var(--main-back);
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border: 0;
  height: 500px;
}
.package-boxx-content {
  background-color: var(--main-back);
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 18px 1px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border: 0;
  height: 500px;
}
.pakage-title h2 {
  font-size: 15px !important;
  color: var(--dark);
  font-family: "Poppins", sans-serif !important;
  font-weight: 500px !important;
  margin: 20px 0;
}
.depositdetails li {
  padding: 10px 0;
}
.docs {
  border: 2px dotted var(--primary);
}
.text-primary {
  color: var(--primary) !important;
}
/* ////sidebar active/// */
.sidebar-nav .active {
  color: var(--primary) !important;
  background: var(--hover-sidebar-text) !important;
}
.sidebar-nav .active i {
  color: var(--primary) !important;
}
.select2-container .select2-search--inline .select2-search__field {
  border: none !important;
}
.buy {
    color: var(--hover-color) !important; /* Color for BUY */
}

.sell {
    color: red !important; /* Color for SELL */
}

.deposit {
    color: var(--primary) !important; /* Color for Deposit */
}

.withdraw {
    color: var(--hover-color) !important; /* Color for Withdraw */
}


.outer13{
  border: 1px solid #0f36c4;
  border-radius: 10px;
  padding:20px;
  margin-top: 20px;
  background: linear-gradient(288.02deg, #ffffff 48.61%, #ffffff 111.32%);
  backdrop-filter: blur(19px);
  color: black;
  
}
.outer11{
  border: 1px solid #0f36c4;
  border-radius: 10px;
  padding:20px;
  margin-top: 20px;
  min-height: 485px;
  background: linear-gradient(288.02deg, #ffffff 48.61%, #ffffff 111.32%);
  backdrop-filter: blur(19px);
  color: black;
}
.outer1{
  border: 1px solid #0f36c4;
  border-radius: 10px;
  padding:20px;
  margin-top: 20px;
  background: linear-gradient(288.02deg, #ffffff 48.61%, #ffffff 111.32%);
  backdrop-filter: blur(19px);
  color: black;
}
.extar-bg{
  background: linear-gradient(288.02deg, #ffffff 48.61%, #ffffff 111.32%);
  backdrop-filter: blur(19px);
  color: black;
}
.outer2{
  border: 1px solid #0f36c4;
  border-radius: 10px;
  padding:20px;
  margin-top: 20px;
  
}
.outercard{
  border: 1px solid #0f36c4;
  border-radius: 10px;
  padding:20px;
  margin-top: 20px;

  
}
.progress-ring {
position: relative;
width: 150px;
height: 150px;
border-radius: 50%;
background: conic-gradient(#4caf50 0deg, #ddd 0deg); /* Progress color and background */
display: flex;
justify-content: center;
align-items: center;
}

.progress-ring-inner {
position: absolute;
width: 120px;
height: 120px;
border-radius: 50%;
background-color: white; /* Inner circle to create ring effect */
}

#progress-text {
position: absolute;
font-size: 24px;
font-weight: bold;
color: #333;
display: flex;
justify-content: center;
align-items: center;
}


.dynamic-ring {
      position: relative;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: conic-gradient(#ff9800 0deg, #ddd 0deg); /* Progress color */
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .dynamic-ring-inner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-color: white;
  }

  #dynamic-ring-text {
      position: absolute;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
  }


  .third-ring {
      position: relative;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: conic-gradient(#2196F3 0deg, #ddd 0deg); /* Progress color */
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .third-ring-inner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-color: white;
  }

  #third-ring-text {
      position: absolute;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
  }


  .fourth-ring {
      position: relative;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: conic-gradient(#f44336 0deg, #ddd 0deg); /* Progress color */
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px;
  }

  .fourth-ring-inner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-color: white;
  }

  #fourth-ring-text {
      position: absolute;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
  }