::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a3a4b492;
}
::-webkit-scrollbar-thumb {
  background: #494a54;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb:active {
  background: #a3a4b492;
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #010d19;
}

#navbar {
  width: 100%;
  position: fixed;
  background-color: #031520;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1000000000;
}

.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
}

.nav-container h3 {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

.logo {
  height: 50px;
}

.page {
  margin-left: 235px;
  padding: 85px 2rem;
  transition: margin-left 0.3s ease;
}

select {
  display: unset;
}
.container {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0.31);
  padding: 2.5rem;
}
.ui-btn {
  --btn-default-bg: #010314;
  --btn-padding: 15px 20px;
  --btn-hover-bg: rgb(51, 51, 51);
  --btn-transition: 0.3s;
  --btn-letter-spacing: 0.1rem;
  --btn-animation-duration: 1.2s;
  --btn-shadow-color: rgba(0, 0, 0, 0.137);
  --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
  --hover-btn-color: #7241ff;
  --default-btn-color: #fff;
  --font-size: 16px;
  /* 👆 this field should not be empty */
  --font-weight: 600;
  --font-family: Menlo, Roboto Mono, monospace;
}

/* button settings 👆 */

.ui-btn {
  box-sizing: border-box;
  padding: var(--btn-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-btn-color);
  font: var(--font-weight) var(--font-size) var(--font-family);
  background: var(--btn-default-bg);
  cursor: pointer;
  transition: var(--btn-transition);
  overflow: hidden;
  box-shadow: var(--btn-shadow);
  border-radius: 10px;
  border: 2px solid #2a2b3a;
}

.ui-btn span {
  letter-spacing: var(--btn-letter-spacing);
  transition: var(--btn-transition);
  box-sizing: border-box;
  position: relative;
  background: inherit;
}

.ui-btn span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}

.ui-btn:hover,
.ui-btn:focus {
  background: var(--btn-default-bg);
  box-shadow: 0px 0px 10px 0px rgba(119, 68, 255, 0.7);
  border: 2px solid #7241ff;
}

.ui-btn:hover span,
.ui-btn:focus span {
  color: var(--hover-btn-color);
}

.ui-btn:hover span::before,
.ui-btn:focus span::before {
  animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {
  0% {
    content: "#";
  }

  5% {
    content: ".";
  }

  10% {
    content: "^{";
  }

  15% {
    content: "-!";
  }

  20% {
    content: "#$_";
  }

  25% {
    content: "№:0";
  }

  30% {
    content: "#{+.";
  }
  35% {
    content: "@}-?";
  }

  40% {
    content: "?{4@%";
  }

  45% {
    content: "=.,^!";
  }

  50% {
    content: "?2@%";
  }

  55% {
    content: "\;1}]";
  }

  60% {
    content: "?{%:%";
    right: 0;
  }

  65% {
    content: "|{f[4";
    right: 0;
  }

  70% {
    content: "{4%0%";
    right: 0;
  }

  75% {
    content: "'1_0<";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}
.button {
  width: 150px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: red;
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  background: #e62222;
}

.button,
.button span {
  transition: 200ms;
}

.button .text {
  transform: translateX(35px);
  color: white;
  font-weight: bold;
}

.button .icon {
  position: absolute;
  border-left: 1px solid #c41b1b;
  transform: translateX(110px);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button svg {
  width: 15px;
  fill: #eee;
}

.button:hover {
  background: #ff3636;
}

.button:hover .text {
  color: transparent;
}

.button:hover .icon {
  width: 150px;
  border-left: none;
  transform: translateX(0);
}

.button:focus {
  outline: none;
}

.button:active .icon svg {
  transform: scale(0.8);
}
.input {
  border: 2px solid transparent;
  width: 15em;
  height: 2.5em;
  padding-left: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: #f3f3f3;
  border-radius: 10px;
  transition: all 0.5s;
  color: #000;
}

.input:hover,
.input:focus {
  border: 2px solid #4a9dec;
  box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
  background-color: white;
}
.input2 {
  border: 2px solid transparent;
  width: 100%;
  height: 2.5em;
  padding-left: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: #f3f3f3;
  border-radius: 10px;
  transition: all 0.5s;
  color: #000;
}

.input2:hover,
.input2:focus {
  border: 2px solid #4a9dec;
  box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
  background-color: white;
}
.autoResponderEntry {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.4px);
  -webkit-backdrop-filter: blur(1.4px);
  border: 1px solid rgba(255, 255, 255, 0.31);
}
table {
  width: 100%;
}
th,
td {
  padding: 8px;
  text-align: center;
}
td {
  color: #fff;
}
td:first-child {
  text-align: left;
  width: 15rem;
}
th {
  background-color: #f2f2f2;
}
th:last-child {
  border-radius: 0 50px 50px 0;
}
th:first-child {
  border-radius: 50px 0 0 50px;
}
.checkbox input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}
.checkbox .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506eec;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox .cbx:hover span:first-child {
  border-color: #506eec;
}

.checkbox .inp-cbx:checked + .cbx span:first-child {
  background: #506eec;
  border-color: #506eec;
  animation: wave-46 0.4s ease;
}
.checkbox .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}
.command {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.4px);
  -webkit-backdrop-filter: blur(1.4px);
  border: 1px solid rgba(255, 255, 255, 0.31);
}
.inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.input-container {
  position: relative;
  width: 25rem;
}

.input-container input[type="text"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
  color: #ffffffa6;
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: #ccc;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container input[type="text"]:focus ~ .label,
.input-container input[type="text"]:valid ~ .label {
  top: -20px;
  font-size: 16px;
  color: #fff;
}
.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="text"]:focus ~ .underline,
.input-container input[type="text"]:valid ~ .underline {
  transform: scaleX(1);
}
.whitelistgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* يمكنك تعديل عرض الأعمدة حسب الحاجة */
  gap: 20px; /* يمكنك تعديل حجم الفجوة هنا */
}
.radio-button-container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.radio-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.radio-button__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button__label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 15px;
  color: #f2f2f2;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.radio-button__custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #555;
  transition: all 0.3s ease;
}

.radio-button__input:checked + .radio-button__label .radio-button__custom {
  background-color: #4c8bf5;
  border-color: transparent;
  transform: scale(0.8);
  box-shadow: 0 0 20px #4c8bf580;
}

.radio-button__input:checked + .radio-button__label {
  color: #4c8bf5;
}

.radio-button__label:hover .radio-button__custom {
  transform: scale(1.2);
  border-color: #4c8bf5;
  box-shadow: 0 0 20px #4c8bf580;
}
#open {
  display: none;
  margin-left: auto;
}
.commands {
  padding-left: 0;
  padding-right: 0;
}
.rolebutton {
  gap: 1rem;
}
@media (max-width: 768px) {
  #open {
    display: block;
  }
  .page {
    margin-left: 0;
    padding: 85px 1rem;
  }
  .inputs {
    display: flex;
    flex-direction: column;
  }
  .input-container {
    width: 100%;
  }
  .commands {
    padding-left: 0;
    padding-right: 0;
  }
  td:first-child {
    width: 0;
  }
  .whitelistgrid {
    display: flex;
    flex-direction: column;
  }
  .rolebutton {
    gap: 0;
    flex-direction: column;
  }
  .container {
    padding: 1.5rem;
  }
  .group {
    flex-direction: column;
  }
  .remove {
    margin-top: 15px;
  }
}
.about .avatar-wrapper {
  position: relative;
  width: 120px; /* Change to your preferred size */
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.about .avatar-wrapper .bot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.about .avatar-wrapper::before {
  content: "View Profile";
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5);
  color: #eeeeee;

  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;

  border-radius: 50%;

  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 2;

  pointer-events: none;
}

.about .avatar-wrapper:hover::before {
  opacity: 1;
}

.about .avatar-wrapper:hover .bot {
  transform: scale(1.08);
}

img {
  z-index: 10;
}
