/* Vehicles Module Premium Styles */
#module-vehicles .card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: none;
    /* Let parent handle or remove specific shadow */
    border: 1px solid var(--border-color);
}

#module-vehicles .list-group-item {
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    margin-bottom: 0.75rem;
    border-radius: var(--radius-lg) !important;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

#module-vehicles .list-group-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#module-vehicles .list-group-item.active {
    background-color: var(--bg-surface);
    border-color: var(--accent-main);
    box-shadow: 0 0 0 2px var(--accent-main);
    z-index: 1;
    color: var(--text-main);
}