/* Custom CSS overrides to combine Bootstrap & Tailwind smoothly */

/* Make Bootstrap inputs look more like Tailwind */
.form-control {
    border-radius: 0.375rem;
    border-color: #d1d5db;
}

.form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

/* Mobile bottom nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    z-index: 50;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.25rem;
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.nav-item.active {
    color: #4f46e5;
}

/* Hide desktop sidebar on mobile, show on md up */
@media (max-width: 768px) {
    .desktop-sidebar {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
    body {
        padding-bottom: 0; /* Remove padding for bottom nav */
    }
}
