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;
}

.card-custom {
    min-height: 420px;
    background-color: #f8f9fa;
    box-shadow: .15rem .15rem .15rem rgba(0, 0, 0, .15);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-custom:hover {
    box-shadow: .25rem .25rem .75rem rgba(0, 0, 0, .2);
    transform: translateY(-3px);
}
/* Make dropdown items taller and easier to tap */
.dropdown-menu .dropdown-item {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.95rem; /* optional: slightly larger text */
}
.sidebar-container {
    width: 350px; /* adjust as needed */
    flex: 0 0 350px !important;
}
.main-content {
    flex: 1;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s;
}



