.setting-container {
    margin-left: 15px;
    margin-right: 15px;
    overflow-y: auto;
    height: 750px;

}

.setting-container .app-1-header {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding-top: 40px

}

.setting-container::-webkit-scrollbar {
    display: none;
}

.connection-container {
    background-color: #dcdcdc;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 5px;
}

.section h3 {
  font-size: 16px;
  margin: 20px 0 10px;
}

.card {
  background: #dcdcdc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #aaa;
  border-radius: 8px;
}

.title {
  font-weight: bold;
}

.subtitle {
  font-size: 12px;
  color: #444;
  /* margin-left: 45px; */
}

/* Buttons */
.disconnect-btn {
  background: #914a48;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.descale-btn {
  background: #333;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
}

/* Status Grid */
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.status-card {
  padding: 15px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-icon {
  width: 30px;
  height: 30px;
  background: #222;
  border-radius: 6px;
}

.item-title {
  font-weight: 600;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  color: white;
}

.good {
  background: #497b4d;
}

/* Bars */
.bar-holder {
  margin-top: 20px;
  position: relative;
}

.bar {
  height: 4px;
  background: black;
  width: 100%;
  border-radius: 2px;
}


.percent {
  margin-top: 10px;
  font-weight: bold;
}

