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;
}

@media (max-width: 450px) {
    .hide-under-450 {
        display: none !important;
    }
}

.save-btn {
    position: absolute;
    bottom: -28px; /* space below textarea */
    right: 0; /* align to the right */
    padding: 2px 8px; /* thin padding */
    font-size: 0.8rem; /* smaller font */
    line-height: 1; /* tight height */
    min-width: 50px; /* small width */
}

.chart-container {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 300px;
    }
}

@media (max-width: 1000px) {
    .collapse-on-small {
        display: none;
    }
}

.black-text-area {
    background-color: #333;
    color: #fff;
    min-height: 200px;
    padding: 1rem;
    border-radius: 0.5rem;
    flex-grow: 1;
    overflow: auto;
}
.settings-card {
    border-radius: 12px;
}

.profile-img {
    width: 85px;
    height: 85px;
    /* border-radius: 50%; */
    object-fit: cover;
}

.fade-text {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .fade-text.show {
        opacity: 1;
    }