/* Custom styles for packages page - minimal overrides to Bootstrap 5.3 */

/* Custom hover effect for cards */
.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.15s ease-in-out;
}

/* Ensure links in list items don't break layout */
.list-group-item a {
    flex-grow: 1;
}

/* Custom focus styles for search input to match theme */
#searchInput:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
