html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.sidebar {
    width: 250px;
    background-color: #343a40;
    color: #fff;
    padding: 1rem;
    min-height: 100vh;
    transition: all 0.3s;
}

    .sidebar h4 {
        color: #A87FF3;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .sidebar .nav-link {
        color: #fff;
        transition: all 0.3s;
    }

        .sidebar .nav-link:hover {
            background-color: #495057;
            border-radius: 4px;
            padding-left: 1.5rem;
        }

    .sidebar .submenu {
        padding-left: 1rem;
        transition: all 0.3s;
    }

        .sidebar .submenu .nav-link {
            font-size: 0.95rem;
            color: #ced4da;
        }

            .sidebar .submenu .nav-link:hover {
                color: #fff;
            }

main {
    flex-grow: 1;
    padding: 2rem;
}

.collapse-toggle::after {
    content: '\25BC';
    float: right;
    transition: transform 0.3s;
}

.collapse.show + .collapse-toggle::after {
    transform: rotate(-180deg);
}

.homeCard {
    background-color: #A87FF3;
}