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 {
    background-color: #343a40;
    color: #f8f9fa;
    margin-bottom: 60px;
}

a {
    color: #6ea8fe;
}

.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;
}

/* Login Page Styles */
.min-vh-75 {
    min-height: 75vh;
}

.login-card {
    border-radius: 1rem;
}

.form-floating > .form-control.bg-dark {
    color: #f8f9fa;
}

.form-floating > .form-control.bg-dark:focus {
    background-color: #3b4248;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(37, 140, 251, 0.25);
}

.form-floating > label.text-muted {
    color: #6c757d !important;
}

.form-floating > .form-control:focus ~ label.text-muted,
.form-floating > .form-control:not(:placeholder-shown) ~ label.text-muted {
    color: #adb5bd !important;
}

/* Dashboard Styles */
.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-secondary-subtle {
    background-color: rgba(108, 117, 125, 0.1) !important;
}

.border-end-md {
    border-right: 1px solid #dee2e6;
}

@media (max-width: 767.98px) {
    .border-end-md {
        border-right: none;
    }
}