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;
}

/*Added CSS*/
.text-violet {
    color: #8b5cf6;
}

.bg-violet {
    background-color: #8b5cf6;
}

.bg-zinc-800 {
    background-color: #27272a;
}

.bg-zinc-900 {
    background-color: #18181b;
}

/* Bar chart component height mapping */
.chart-bar {
    flex: 1;
    background-color: #27272a;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: height 0.3s ease;
}

    .chart-bar.highlight {
        background-color: #8b5cf6;
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    }
