   
.chart-container {
   margin: 20px auto; 
}


.icon-48 {
  width: 48px;
  height: 48px; 
  display: inline-block; 
}

.icon-48 svg {
  width: 48px;
  height: 48px;
}

.icon-32 {
  width: 32px;
  height: 32px; 
  display: inline-block; 
}

.icon-32 svg {
  width: 32px;
  height: 32px;
}

.icon-16 {
  width: 16px;
  height: 16px; 
  display: inline-block;
}

.icon-16 svg {
  width: 16px;
  height: 16px;
}

.icon-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #5c6bc0;
  font-size: 1.2rem;
  color: white; 
  padding: 0.5rem;
}

.dotted-border {
  border: 0;
  border-top: 1px dashed #302e2e;
  margin: 20px 0; 
}

.custom-table th {
    text-align: center;
    vertical-align: middle;
}
.custom-table tr {
    text-align: center;
    vertical-align: middle;
}
.custom-table thead {
    border-bottom: 0.5rem solid lightblue;
}



.settings-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

.setting-card {
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.setting-card:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.setting-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: #0d6efd;
}

.setting-title {
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .setting-card {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    .setting-card {
        width: 120px;
        height: 120px;
        font-size: 0.8rem;
    }

    .setting-icon {
        width: 36px;
        height: 36px;
    }
}