::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #aaaaaa;
  border-radius: 10px;
}
.dark-theme ::-webkit-scrollbar-track {
  background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
  cursor: pointer;
}
div:not(#map-container) {
  overflow: hidden;
}
body {
  font-family: "Comfortaa", sans-serif !important;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  background-color: #aaaaaa;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.dark-theme {
  background-color: #1e1e1e;
  color: #ffffff;
}
form {
  margin-bottom: 0px;
}
.dark-theme .left-panel,
.dark-theme .middle-panel,
.dark-theme .right-panel,
.dark-theme input,
.dark-theme .info-box,
.dark-theme .history-list li,
.dark-theme .modal-content,
.dark-theme .checkbox-option {
  background-color: #3d3d3d;
  border-color: #1e1e1e;
  color: #ffffff;
}
.dark-theme button {
  border-color: #1e1e1e;
}
.container {
  display: flex;
  flex: 1;
  gap: 10px;
  padding: 10px;
}
.left-panel,
.middle-panel,
.right-panel {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.left-panel {
  align-items: center;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.middle-panel {
  flex: 2.5;
  padding: 0px;
}
.right-panel {
  flex: 1;
}
h1 {
  margin-top: 10px;
  font-size: x-large;
  margin-bottom: 10px;
  color: #007bff;
}
p.description {
  font-size: medium;
}
input,
button {
  font-family: "Comfortaa", sans-serif !important;
  border-radius: 10px;
  padding: 10px;
  font-size: medium;
  border: 1px solid #aaaaaa;
  box-sizing: border-box;
  font-weight: bold;
}
input {
  margin-bottom: 10px;
  width: 100%;
  border-left-width: thick;
  background-color: #ffffff;
  color: #000000;
  height: 40px;
  user-select: text;
}
button {
  height: 40px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  cursor: pointer !important;
  transition: background-color 0.3s ease;
  word-wrap: normal;
  word-break: keep-all;
  padding-top: revert;
  padding-bottom: revert;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
button:hover:not(:disabled) {
  background-color: #0056b3;
}
button:disabled {
  background-color: #aaaaaa !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  color: #000000;
}
button:disabled:hover {
  background-color: #aaaaaa !important;
  cursor: not-allowed !important;
}
.clear-button {
  background-color: #e74c3c;
  padding: 10px;
  font-size: medium;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  display: none;
}
.clear-button.visible {
  display: flex;
}
.clear-button:hover {
  background-color: #c0392b;
}
.history-item-hidden {
  display: none !important;
}
.info-box {
  margin-top: 15px;
  background: #ffffff;
  padding: 15px;
  border: 1px solid #aaaaaa;
  border-radius: 10px;
  border-left-width: thick;
  display: flex;
  justify-content: space-between;
}
.history-list {
  list-style: none;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}
.history-list li {
  padding: 10px;
  padding-bottom: 0px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  user-select: none;
  border-left-width: thick;
}
.history-list li.selected {
  border: 1px solid #007bff;
  border-left-width: thick;
}
.dark-theme .history-list li.selected {
  border-color: #007bff;
}
.history-list li div {
  width: 100%;
}
.history-list li:hover {
  background-color: #aaaaaa;
}
.dark-theme .history-list li:hover {
  background-color: #1e1e1e;
}
.history-list li button {
  background-color: #007bff;
  color: #ffffff;
  padding: 5px 10px;
  font-size: medium;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: none;
}
.history-list li.selected button {
  display: inline-flex;
  margin-bottom: 10px;
}
.history-list li button:last-child {
  background-color: #e74c3c;
}
.history-list li button:hover {
  background-color: #0056b3;
}
.history-list li button:first-child {
  flex: 1;
  width: 100%;
  font-size: medium;
}
.history-list li button:hover:last-child {
  background-color: #c0392b;
}
#download-history {
  width: 100%;
  margin-top: 10px;
}
.search-container {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
}
.search-container input {
  flex: 1;
  margin: 0;
  min-width: 50%;
}
.search-container button {
  flex: 0 0 auto;
  margin: 0;
  width: 40px;
  height: 40px;
}
.reset-history-button {
  background-color: #e74c3c !important;
  margin-top: 10px;
}
.reset-history-button:hover {
  background-color: #c0392b !important;
}
.import-button {
  background-color: #28a745 !important;
  margin-top: 10px;
}
.import-button:hover {
  background-color: #218838 !important;
}
.red-button {
  background-color: #e74c3c !important;
  margin-top: 10px;
}
.red-button:hover {
  background-color: #c0392b !important;
}
.green-button {
  background-color: #28a745 !important;
  margin-top: 10px;
}
.green-button:hover {
  background-color: #218838 !important;
}
.theme-button {
  background-color: #aaaaaa;
  color: #000000;
  margin-top: auto;
}
.theme-button:hover {
  background-color: #1e1e1e !important;
  color: #ffffff;
}
.dark-theme .theme-button {
  background-color: #1e1e1e;
  color: #ffffff;
}
.dark-theme .theme-button:hover {
  background-color: #aaaaaa !important;
  color: #000000;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(227, 227, 227, 0.5);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.dark-theme .modal {
  background-color: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(10px);
}
.modal-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 562px !important;
}
.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.modal-buttons button {
  flex: 1;
}
.no-history {
  text-align: center;
}
#live-map {
  flex: 1;
}
.dark-theme #live-map [class$="ground-pane"] {
  filter: invert(75%) hue-rotate(180deg) brightness(100%) contrast(150%);
}
.ymaps-2-1-79-copyrights-pane {
  display: none !important;
}
#live-map,
.ymaps-2-1-79-map,
.ymaps-2-1-79-inner-panes {
  border-radius: 10px;
}
*:focus {
  outline: none;
}
.coordinate-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coordinate-title {
  font-size: medium;
  display: flex;
}
.coordinate-value {
  display: flex;
  font-size: x-large;
  font-weight: 900;
  color: #007bff;
}
.coordinate-label {
  flex: auto;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  align-content: center;
}
.tip-label {
  display: inline-block;
  color: #ffffff;
  font-size: x-small;
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 10px;
  background-color: #007bff;
  height: fit-content;
  white-space: nowrap;
}
.redSPAN {
  background-color: #e74c3c !important;
  color: #000000 !important;
}
.yellowSPAN {
  background-color: yellow !important;
  color: #000000 !important;
}
.greenSPAN {
  background-color: #28a745 !important;
  color: #000000 !important;
}
.logo-container img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0px;
  transition: transform 0.3s ease;
}
.left-panel button {
  width: 40px !important;
  height: 40px !important;
}
.left-panel-top {
  margin-bottom: 10px;
  padding: 10px;
  display: grid;
  height: 60px;
}
.left-panel-bottom {
  height: 100%;
}
#download-history,
.import-button,
.reset-history-button {
  margin-top: 0px;
  margin-bottom: 20px;
}
.language-log,
.help-log,
.theme-log {
  flex: none !important;
  width: 40px !important;
  height: 40px;
}
#draw-polygon {
  margin-top: 20px;
}
#stop-drawing {
  display: none;
  margin-top: 20px;
}
.container-flex {
  display: flex;
  flex-direction: column;
}
#show-map {
  width: 40px;
  height: 40px;
}
#draw-polygon {
  height: 40px;
}
.password-container {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.password-container input {
  padding-right: 40px;
  margin-bottom: 0;
}
.password-container i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaaaaa;
}
.dark-theme .password-container i {
  color: #aaaaaa;
}
.boundary-controls-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}
.boundary-controls-container .hidden {
  display: none;
}
#boundary-save-btn {
  background-color: #28a745 !important;
}
#boundary-save-btn:hover {
  background-color: #218838 !important;
}
#settings-button,
#boundary-main-btn {
  margin-top: 20px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  padding: 0px 10px;
  border-radius: 10px;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  min-height: 40px;
}
.checkbox-option span {
  padding: 10px 0px;
}
.dark-theme .checkbox-grid label {
  background: #3d3d3d;
  border-color: #1e1e1e;
}
.checkbox-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  accent-color: #007bff;
  border: none;
  min-width: 18px;
}
#open-filter {
  height: 40px;
  width: 40px;
}
.checkbox-option {
  transition: all 0.3s ease;
  user-select: none;
  text-align: left;
}
.checkbox-option:hover {
  border-color: #007bff;
}
.dark-theme .checkbox-option:hover {
  border-color: #007bff;
}
.checkbox-option input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: #007bff;
  cursor: pointer;
  border-radius: 10px;
  flex: none;
}
.progress-container {
  width: 80%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.dark-theme .progress-container {
  background-color: #3d3d3d;
}
.progress-bar-wrapper {
  width: 100%;
  height: 20px;
  background-color: #aaaaaa;
  border-radius: 10px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background-color: #007bff;
  width: 0%;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ffffff;
  font-weight: bold;
}
#loading-details {
  margin-bottom: 0px;
}
.filter-count-span {
  font-weight: bold;
  color: #007bff;
  margin-left: auto;
}
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-notification {
  background-color: #ffffff;
  border: 1px solid #007bff;
  border-radius: 10px;
  padding: 15px 20px;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  animation: slideIn 0.3s ease forwards;
  font-family: "Comfortaa", sans-serif !important;
  color: #000000;
  backdrop-filter: blur(5px);
  border-left-width: thick;
}
.toast-notification.hiding {
  animation: slideOut 0.3s ease forwards;
}
.toast-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 10px;
}
.toast-title {
  font-weight: bold;
  font-size: 1rem;
  color: #007bff;
}
.toast-message {
  font-size: 0.9rem;
  color: #000000;
}
.toast-close {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
  height: auto !important;
  width: auto !important;
}
.toast-close:hover {
  color: #e74c3c;
  background: none !important;
}
.dark-theme .toast-close:hover {
  color: #c0392b;
  background: none !important;
}
.dark-theme .toast-notification {
  background-color: #3d3d3d;
  color: #ffffff;
}
.dark-theme .toast-message {
  color: #ffffff;
}
.dark-theme .toast-close {
  color: #ffffff;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
#popup-polygon {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: clip;
}
@media (max-aspect-ratio: 1/1) {
  * {
    box-sizing: border-box;
  }
  body {
    overflow: auto;
  }
  button > span {
    display: none;
  }
  .container {
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  .container-flex {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
  }
  .left-panel button {
    margin: 3px !important;
  }
  .left-panel-top {
    flex: 0 0 auto;
    padding: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
  }
  .left-panel-bottom {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: right;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .middle-panel,
  .right-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .middle-panel {
    flex: 1 1 0;
  }
  .right-panel {
    flex: 1 1 0;
  }
  #live-map,
  .history-list {
    height: 100%;
    width: 100%;
  }
  .modal-content {
    width: 95% !important;
  }
  .boundary-controls-container {
    gap: 0px !important;
    margin-top: 0px !important;
    flex-direction: row;
  }
  .checkbox-grid {
    grid-template-columns: 1fr !important;
  }
  .coordinate-value {
    font-size: x-large;
  }
  #toast-container {
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    align-items: center;
  }
  .toast-notification {
    width: 100%;
    min-width: auto;
  }
  @keyframes slideIn {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideOut {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  body.settings-open .middle-panel {
    display: none !important;
  }
  body.settings-open #settings-panel {
    display: flex !important;
    width: 100% !important;
    flex: 1;
  }
  .settings-item {
    padding: 10px;
  }
  .theme-switch-container {
    padding: 10px;
  }
}
.settings-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.settings-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}
#settings-support > .modal-buttons,
#settings-password > .modal-buttons {
  margin-top: 20px;
}
.dark-theme .settings-item {
  background: #3d3d3d;
  border-color: #1e1e1e;
}
.settings-item:hover {
  background-color: #aaaaaa;
  border-color: #007bff;
}
.dark-theme .settings-item:hover {
  background-color: #1e1e1e;
  border-color: #007bff;
}
.settings-item i:first-child {
  font-size: 20px;
  color: #007bff;
  min-width: 20px;
}
.settings-item i:last-child {
  font-size: 16px;
  color: #aaaaaa;
  margin-left: auto;
}
.theme-switch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
  margin-bottom: 20px;
}
.dark-theme .theme-switch-container {
  background: #3d3d3d;
  border-color: #1e1e1e;
}
.theme-switch-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}
.theme-switch-label i {
  font-size: 20px;
  color: #007bff;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #aaaaaa;
  transition: 0.4s;
  border-radius: 10px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 10px;
}
input:checked + .slider {
  background-color: #007bff;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.language-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.language-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}
.dark-theme .language-item {
  background: #3d3d3d;
  border-color: #1e1e1e;
}
.language-item:hover {
  background-color: #aaaaaa;
  border-color: #007bff;
}
.dark-theme .language-item:hover {
  background-color: #1e1e1e;
  border-color: #007bff;
}
.language-item.active {
  border-color: #007bff;
  background-color: #007bff;
  color: #ffffff;
}
.dark-theme .language-item.active {
  background-color: #007bff;
}
.language-item i {
  font-size: 20px;
  color: #007bff;
}
.language-item.active i {
  color: #ffffff;
}
button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline;
}
button {
  overflow: hidden;
  min-width: 0;
}
#filter-panel {
  display: flex;
  flex-direction: column;
}
#sahə-cədvəl-panel {
  list-style: none;
  padding: 0px;
  margin: 0;
}
#sahə-cədvəl-panel li {
  padding: 10px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-left-width: thick;
  text-align: left;
}
.dark-theme #sahə-cədvəl-panel li {
  background-color: #3d3d3d;
  border-color: #1e1e1e;
  color: #fff;
}
.status-buttons-container {
  display: flex;
  gap: 10px;
}
.status-btn {
  flex: 1;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 10px;
  color: #000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  border-left-width: thick;
}
.status-btn.red {
  border-color: #e74c3c;
}
.status-btn.red.selected {
  background-color: #e74c3c;
}
.status-btn.red:hover {
  background-color: #e74c3c !important;
}
.status-btn.yellow {
  border-color: #ffff00;
}
.status-btn.yellow.selected {
  background-color: #ffff00;
}
.status-btn.yellow:hover {
  background-color: #ffff00 !important;
}
.status-btn.green {
  border-color: #28a745;
}
.status-btn.green.selected {
  background-color: #28a745;
}
.status-btn.green:hover {
  background-color: #28a745 !important;
}
#settings-panel {
  display: none;
  flex-direction: column;
}
.settings-sub-panel {
  display: none;
  flex-direction: column;
  height: 100%;
  overflow: hidden !important;
  padding-right: 0px;
}
.settings-content-scroll {
  flex: 1;
  padding-right: 10px;
}
.info-grid {
  display: flex;
  flex-direction: column;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
}
.dark-theme .info-item {
  background: #3d3d3d;
  border-color: #1e1e1e;
}
.info-label {
  font-size: 0.9rem;
  color: #007bff;
  font-weight: bold;
}
.info-value {
  font-size: 1rem;
  font-weight: bold;
  color: inherit;
  word-break: break-all;
}
.settings-content-scroll {
  overflow-y: auto !important;
  padding-right: 10px;
}
.backup-list {
  padding: 0px;
  margin: 0px;
}
.backup-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.backup-card:hover {
  background-color: #aaaaaa;
  border-color: #007bff;
}
.dark-theme .backup-card {
  background: #3d3d3d;
  border-color: #1e1e1e;
  box-shadow: none;
}
.dark-theme .backup-card:hover {
  background-color: #1e1e1e;
  border-color: #007bff;
}
.backup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dark-theme .backup-header {
  border-color: #555;
}
.backup-title {
  font-weight: bold;
  color: #007bff;
  font-size: 1rem;
}
.backup-actions {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.backup-restore-btn {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: #28a745;
  color: white;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.backup-delete-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: #e74c3c;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px;
}
.input-group-row input {
  flex: 1;
  margin-bottom: 0 !important;
}
#sahə-cədvəl-panel li.selected {
  border-color: #007bff;
  border-left-color: #007bff;
}
.dark-theme #sahə-cədvəl-panel li.selected {
  border-color: #007bff;
}
#sahə-cədvəl-panel li.selected .sahə-title {
  color: #007bff;
}
.settings-item-styled,
.info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 0px 15px;
  border: 1px solid #aaaaaa;
  border-left-width: thick;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 50px;
}
.dark-theme .settings-item-styled {
  border-color: #1e1e1e;
}
.settings-item-styled:focus-within {
  border-color: #007bff;
}
.settings-item-styled input {
  background: transparent !important;
  border: none !important;
  padding-left: 0 !important;
  height: 100% !important;
}
.settings-item-styled i:first-child,
.info-item i:first-child {
  font-size: 20px;
  color: #007bff;
  min-width: 20px;
  padding: inherit;
  padding-left: 0px;
  padding-right: 0px;
}
.info-item {
  padding: 10px 15px;
  height: auto;
  align-items: normal;
}