/*
html{
    --bg: #fff;
    --bg-panel: #ebebeb;
    --color-heading: rgb(27, 168, 14); 
    --color-text: #333333;
}

html[data-theme='dark'] {

    
    --bg: #333333;
    --bg-panel: #434343;
    --color-heading: #0077ff; 
    --color-text: #B5B5B5;
}
*/

/*-----------------------------
light/dark theme
-------------------------------*/
#dark-icon, #light-icon {
  font-size: 1.5rem;
  color: white;
}

#dark-icon,
.dark-icon,
[data-theme="dark"] #light-icon,
[data-theme="dark"] .light-icon {
  display: none!important;
}

[data-theme="dark"] #dark-icon,
[data-theme="dark"] .dark-icon,
#light-icon,
.light-icon {
  display: inline-block!important;
}

body {
  background-color: white;
}
[data-theme="dark"] body {
  background-color: black;
}

.titulo {
  color: black;
  border-color: black !important;
}

[data-theme="dark"] .titulo {
  color: white;
  border-color: white !important;
}

[data-theme="dark"] .table {
  color: white;
  border-color: darkgray !important;
}
[data-theme="dark"] .calendario {
  color: black !important;
}

[data-theme="dark"] .table thead {
  border-color: darkgray;
}

[data-theme="dark"] .card {
  background-color: dimgray;
  color: black;
}

[data-theme="dark"] .nav-link {
  background-color: dimgray;
}

[data-theme="dark"] .nav-link.active {
  color: black!important;
}

.card {
  margin: 0 !important;
}

#content {
  min-height: auto;
}

.card-body h6 {
  color: gray;
}

[data-theme="dark"] .card-body {
  background-color: var(--sidebar-secondary-bg-color);
}

[data-theme="dark"] .card-body h6 {
  color: lightgray;
}

[data-theme="dark"] .card-body h5,
[data-theme="dark"] .card-body h3,
[data-theme="dark"] .card-body label {
  color: lightgray;
}

[data-theme="dark"] .card-footer {
  background-color: #343a40 !important;
}

[data-theme="dark"] .app-link-secondary {
  color: white !important;
}
